]> andersk Git - openssh.git/blame - Makefile.in
Update to OpenBSD ssh-19991029
[openssh.git] / Makefile.in
CommitLineData
5881cd60 1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
5libdir=@libdir@
6
7CC=@CC@
5aecb327 8OPT_FLAGS=-g
9CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@
f1bcacf9 10TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp
5881cd60 11LFLAGS=-L./bin
f1bcacf9 12LIBS=-lssh @LIBS@
5881cd60 13AR=@AR@
14RANLIB=@RANLIB@
15
16OBJS= authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \
17 auth-rsa.o bufaux.o buffer.o canohost.o channels.o cipher.o \
18 clientloop.o compress.o crc32.o deattack.o helper.o hostfile.o \
19 log-client.o login.o log-server.o match.o mpaux.o packet.o pty.o \
20 readconf.o readpass.o rsa.o servconf.o serverloop.o \
21 sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o \
22 helper.o mktemp.o strlcpy.o rc4.o
23
24all: $(OBJS) $(TARGETS)
25
f1bcacf9 26bin/libssh.a: authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o hostfile.o match.o mpaux.o nchan.o packet.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o helper.o rc4.o mktemp.o strlcpy.o
5881cd60 27 [ -d bin ] || mkdir bin
28 $(AR) rv $@ $^
29 $(RANLIB) $@
30
f1bcacf9 31bin/ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o
5881cd60 32 [ -d bin ] || mkdir bin
33 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
34
f1bcacf9 35bin/sshd: sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o
5881cd60 36 [ -d bin ] || mkdir bin
37 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
38
f1bcacf9 39bin/scp: scp.o
5881cd60 40 [ -d bin ] || mkdir bin
41 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
42
f1bcacf9 43bin/ssh-add: ssh-add.o log-client.o
5881cd60 44 [ -d bin ] || mkdir bin
45 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
46
f1bcacf9 47bin/ssh-agent: ssh-agent.o log-client.o
5881cd60 48 [ -d bin ] || mkdir bin
49 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
50
f1bcacf9 51bin/ssh-keygen: ssh-keygen.o log-client.o
5881cd60 52 [ -d bin ] || mkdir bin
53 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
54
55clean:
56 rm -f *.o core bin/* config.status config.cache config.log
57
58install:
59 install -d $(bindir)
60 install -d $(sbindir)
61 install -d $(libdir)
f1bcacf9 62 install -c bin/ssh $(bindir)/ssh
63 install -c bin/scp $(bindir)/scp
64 install -c bin/ssh-add $(bindir)/ssh-add
65 install -c bin/ssh-agent $(bindir)/ssh-agent
66 install -c bin/ssh-keygen $(bindir)/ssh-keygen
67 install -c bin/sshd $(sbindir)/sshd
68 install -c bin/libssh.a $(libdir)/libssh.a
5881cd60 69
70distclean: clean
71 rm -f Makefile config.h *~
72 rm -rf bin
73
74mrproper: distclean
This page took 0.059754 seconds and 5 git commands to generate.