]> andersk Git - openssh.git/blame - Makefile.in
Path fix /etc -> /etc/ssh
[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@
5881cd60 10TARGETS=bin/libopenssh.a bin/openssh bin/opensshd bin/openssh-add bin/openssh-keygen bin/openssh-agent bin/openscp
11LFLAGS=-L./bin
12LIBS=-lopenssh @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/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
27 [ -d bin ] || mkdir bin
28 $(AR) rv $@ $^
29 $(RANLIB) $@
30
31bin/openssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o
32 [ -d bin ] || mkdir bin
33 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
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
36 [ -d bin ] || mkdir bin
37 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
38
39bin/openscp: scp.o
40 [ -d bin ] || mkdir bin
41 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
42
43bin/openssh-add: ssh-add.o log-client.o
44 [ -d bin ] || mkdir bin
45 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
46
47bin/openssh-agent: ssh-agent.o log-client.o
48 [ -d bin ] || mkdir bin
49 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
50
51bin/openssh-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/openssh $(bindir)/openssh
63 install -c bin/openscp $(bindir)/openscp
64 install -c bin/openssh-add $(bindir)/openssh-add
65 install -c bin/openssh-agent $(bindir)/openssh-agent
66 install -c bin/openssh-keygen $(bindir)/openssh-keygen
67 install -c bin/opensshd $(sbindir)/opensshd
68 install -c bin/libopenssh.a $(libdir)/libopenssh.a
69
70distclean: clean
71 rm -f Makefile config.h *~
72 rm -rf bin
73
74mrproper: distclean
This page took 0.095768 seconds and 5 git commands to generate.