diff options
author | Damien Miller <djm@mindrot.org> | 1999-10-29 09:18:29 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-10-29 09:18:29 +1000 |
commit | a37010e4669933490c2347940bceba98ddfc2863 (patch) | |
tree | 2965bce2e9bf43a0f410d5dba9d864dd0b3422b6 /Makefile.in | |
parent | f1d9a30b4f0aad9a5952549f9c3e15a771e0ca68 (diff) |
Renamed open* -> * at request of Theo de Raadt <deraadt@cvs.openbsd.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 32 |
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@ | |||
7 | CC=@CC@ | 7 | CC=@CC@ |
8 | OPT_FLAGS=-g | 8 | OPT_FLAGS=-g |
9 | CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@ | 9 | CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@ |
10 | TARGETS=bin/libopenssh.a bin/openssh bin/opensshd bin/openssh-add bin/openssh-keygen bin/openssh-agent bin/openscp | 10 | TARGETS=bin/libssh.a bin/ssh bin/sshd bin/ssh-add bin/ssh-keygen bin/ssh-agent bin/scp |
11 | LFLAGS=-L./bin | 11 | LFLAGS=-L./bin |
12 | LIBS=-lopenssh @LIBS@ | 12 | LIBS=-lssh @LIBS@ |
13 | AR=@AR@ | 13 | AR=@AR@ |
14 | RANLIB=@RANLIB@ | 14 | RANLIB=@RANLIB@ |
15 | 15 | ||
@@ -23,32 +23,32 @@ OBJS= authfd.o authfile.o auth-passwd.o auth-rhosts.o auth-rh-rsa.o \ | |||
23 | 23 | ||
24 | all: $(OBJS) $(TARGETS) | 24 | all: $(OBJS) $(TARGETS) |
25 | 25 | ||
26 | bin/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 | 26 | bin/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 | ||
31 | bin/openssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o | 31 | bin/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 | ||
35 | bin/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 | 35 | bin/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 | ||
39 | bin/openscp: scp.o | 39 | bin/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 | ||
43 | bin/openssh-add: ssh-add.o log-client.o | 43 | bin/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 | ||
47 | bin/openssh-agent: ssh-agent.o log-client.o | 47 | bin/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 | ||
51 | bin/openssh-keygen: ssh-keygen.o log-client.o | 51 | bin/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 | ||
70 | distclean: clean | 70 | distclean: clean |
71 | rm -f Makefile config.h *~ | 71 | rm -f Makefile config.h *~ |