]> andersk Git - openssh.git/blame_incremental - Makefile.in
Update to OpenBSD ssh-19991029
[openssh.git] / Makefile.in
... / ...
CommitLineData
1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
5libdir=@libdir@
6
7CC=@CC@
8OPT_FLAGS=-g
9CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@
10TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp
11LFLAGS=-L./bin
12LIBS=-lssh @LIBS@
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
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
27 [ -d bin ] || mkdir bin
28 $(AR) rv $@ $^
29 $(RANLIB) $@
30
31bin/ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o
32 [ -d bin ] || mkdir bin
33 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
34
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
36 [ -d bin ] || mkdir bin
37 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
38
39bin/scp: scp.o
40 [ -d bin ] || mkdir bin
41 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
42
43bin/ssh-add: ssh-add.o log-client.o
44 [ -d bin ] || mkdir bin
45 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
46
47bin/ssh-agent: ssh-agent.o log-client.o
48 [ -d bin ] || mkdir bin
49 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
50
51bin/ssh-keygen: ssh-keygen.o log-client.o
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)
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
69
70distclean: clean
71 rm -f Makefile config.h *~
72 rm -rf bin
73
74mrproper: distclean
This page took 0.03252 seconds and 5 git commands to generate.