summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-29 09:18:29 +1000
committerDamien Miller <djm@mindrot.org>1999-10-29 09:18:29 +1000
commita37010e4669933490c2347940bceba98ddfc2863 (patch)
tree2965bce2e9bf43a0f410d5dba9d864dd0b3422b6 /Makefile.in
parentf1d9a30b4f0aad9a5952549f9c3e15a771e0ca68 (diff)
Renamed open* -> * at request of Theo de Raadt <deraadt@cvs.openbsd.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in32
1 files changed, 16 insertions, 16 deletions
diff --git a/Makefile.in b/Makefile.in
index 2601404ce..16bb16da9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -7,9 +7,9 @@ libdir=@libdir@
7CC=@CC@ 7CC=@CC@
8OPT_FLAGS=-g 8OPT_FLAGS=-g
9CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@ 9CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@
10TARGETS=bin/libopenssh.a bin/openssh bin/opensshd bin/openssh-add bin/openssh-keygen bin/openssh-agent bin/openscp 10TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp
11LFLAGS=-L./bin 11LFLAGS=-L./bin
12LIBS=-lopenssh @LIBS@ 12LIBS=-lssh @LIBS@
13AR=@AR@ 13AR=@AR@
14RANLIB=@RANLIB@ 14RANLIB=@RANLIB@
15 15
@@ -23,32 +23,32 @@ OBJS= authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \
23 23
24all: $(OBJS) $(TARGETS) 24all: $(OBJS) $(TARGETS)
25 25
26bin/libopenssh.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 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 27 [ -d bin ] || mkdir bin
28 $(AR) rv $@ $^ 28 $(AR) rv $@ $^
29 $(RANLIB) $@ 29 $(RANLIB) $@
30 30
31bin/openssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o 31bin/ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o
32 [ -d bin ] || mkdir bin 32 [ -d bin ] || mkdir bin
33 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 33 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
34 34
35bin/opensshd: 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 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 36 [ -d bin ] || mkdir bin
37 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 37 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
38 38
39bin/openscp: scp.o 39bin/scp: scp.o
40 [ -d bin ] || mkdir bin 40 [ -d bin ] || mkdir bin
41 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 41 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
42 42
43bin/openssh-add: ssh-add.o log-client.o 43bin/ssh-add: ssh-add.o log-client.o
44 [ -d bin ] || mkdir bin 44 [ -d bin ] || mkdir bin
45 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 45 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
46 46
47bin/openssh-agent: ssh-agent.o log-client.o 47bin/ssh-agent: ssh-agent.o log-client.o
48 [ -d bin ] || mkdir bin 48 [ -d bin ] || mkdir bin
49 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 49 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
50 50
51bin/openssh-keygen: ssh-keygen.o log-client.o 51bin/ssh-keygen: ssh-keygen.o log-client.o
52 [ -d bin ] || mkdir bin 52 [ -d bin ] || mkdir bin
53 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 53 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
54 54
@@ -59,13 +59,13 @@ install:
59 install -d $(bindir) 59 install -d $(bindir)
60 install -d $(sbindir) 60 install -d $(sbindir)
61 install -d $(libdir) 61 install -d $(libdir)
62 install -c bin/openssh $(bindir)/openssh 62 install -c bin/ssh $(bindir)/ssh
63 install -c bin/openscp $(bindir)/openscp 63 install -c bin/scp $(bindir)/scp
64 install -c bin/openssh-add $(bindir)/openssh-add 64 install -c bin/ssh-add $(bindir)/ssh-add
65 install -c bin/openssh-agent $(bindir)/openssh-agent 65 install -c bin/ssh-agent $(bindir)/ssh-agent
66 install -c bin/openssh-keygen $(bindir)/openssh-keygen 66 install -c bin/ssh-keygen $(bindir)/ssh-keygen
67 install -c bin/opensshd $(sbindir)/opensshd 67 install -c bin/sshd $(sbindir)/sshd
68 install -c bin/libopenssh.a $(libdir)/libopenssh.a 68 install -c bin/libssh.a $(libdir)/libssh.a
69 69
70distclean: clean 70distclean: clean
71 rm -f Makefile config.h *~ 71 rm -f Makefile config.h *~