]> andersk Git - openssh.git/blob - Makefile.in
- Merged more OpenBSD changes:
[openssh.git] / Makefile.in
1 prefix=@prefix@
2 exec_prefix=@exec_prefix@
3 bindir=@bindir@
4 sbindir=@sbindir@
5 libexecdir=@libexecdir@
6 mandir=@mandir@
7 sysconfdir=@sysconfdir@
8
9 SSH_PROGRAM=@bindir@/ssh
10 ASKPASS_PROGRAM=@libexecdir@/ssh/ssh-askpass
11
12 CC=@CC@
13 PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
14 CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
15 EXTRA_TARGETS=@GNOME_ASKPASS@
16 TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
17 LIBS=@LIBS@
18 AR=@AR@
19 RANLIB=@RANLIB@
20 INSTALL=@INSTALL@
21 LFLAGS=@LDFLAGS@
22
23 GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
24 GNOME_LIBS=`gnome-config --libs gnome gnomeui`
25
26 OBJS= atomicio.o authfd.o authfile.o auth-passwd.o auth-rhosts.o \
27   auth-rh-rsa.o auth-rsa.o auth-skey.o bsd-daemon.o bsd-login.o \
28   bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o \
29   buffer.o canohost.o channels.o cipher.o clientloop.o compress.o \
30   crc32.o deattack.o helper.o helper.o hostfile.o log-client.o \
31   login.o log-server.o match.o md5crypt.o mpaux.o packet.o pty.o \
32   readconf.o readpass.o rsa.o servconf.o serverloop.o \
33   sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o 
34 all: $(OBJS) $(TARGETS)
35
36 libssh.a: atomicio.o authfd.o authfile.o bsd-daemon.o bsd-mktemp.o \
37   bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o \
38   buffer.o canohost.o channels.o cipher.o compat.o \
39   compress.o crc32.o deattack.o fingerprint.o helper.o \
40   hostfile.o log.o match.o mpaux.o nchan.o packet.o \
41   readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o 
42         $(AR) rv $@ $^
43         $(RANLIB) $@
44
45 ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a
46         $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
47
48 sshd:   sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \
49   pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o \
50   md5crypt.o libssh.a
51         $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
52
53 scp:    scp.o libssh.a
54         $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
55
56 ssh-add: ssh-add.o log-client.o libssh.a
57         $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
58
59 ssh-agent: ssh-agent.o log-client.o libssh.a
60         $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
61
62 ssh-keygen: ssh-keygen.o log-client.o libssh.a
63         $(CC) -o $@ $^ $(LFLAGS) $(LIBS) 
64
65 gnome-ssh-askpass: gnome-ssh-askpass.c
66         $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
67
68 clean:
69         rm -f *.o core $(TARGETS) config.status config.cache config.log
70
71 install: all
72         $(INSTALL) -d $(bindir)
73         $(INSTALL) -d $(sbindir)
74         $(INSTALL) -d $(mandir)
75         $(INSTALL) -d $(mandir)/man1
76         $(INSTALL) -d $(mandir)/man8
77         $(INSTALL) -s ssh $(bindir)/ssh
78         $(INSTALL) -s scp $(bindir)/scp
79         $(INSTALL) -s ssh-add $(bindir)/ssh-add
80         $(INSTALL) -s ssh-agent $(bindir)/ssh-agent
81         $(INSTALL) -s ssh-keygen $(bindir)/ssh-keygen
82         $(INSTALL) -s sshd $(sbindir)/sshd
83         $(INSTALL) -m644 ssh.1 $(mandir)/man1/ssh.1
84         $(INSTALL) -m644 scp.1 $(mandir)/man1/scp.1
85         $(INSTALL) -m644 ssh-add.1 $(mandir)/man1/ssh-add.1
86         $(INSTALL) -m644 ssh-agent.1 $(mandir)/man1/ssh-agent.1
87         $(INSTALL) -m644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
88         $(INSTALL) -m644 sshd.8 $(mandir)/man8/sshd.8
89         -rm -f $(bindir)/slogin
90         ln -s ssh $(bindir)/slogin
91         -rm -f $(mandir)/man1/slogin.1
92         ln -s ssh.1 $(mandir)/man1/slogin.1
93
94         $(INSTALL) -d $(libexecdir) ;
95         $(INSTALL) -d $(libexecdir)/ssh ;
96         if [ ! -z "@GNOME_ASKPASS@" ] ; then \
97                 $(INSTALL) -s @GNOME_ASKPASS@ ${ASKPASS_PROGRAM} ; \
98         fi
99
100         if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \
101                 $(INSTALL) -d $(sysconfdir); \
102                 $(INSTALL) -m644 ssh_config $(sysconfdir)/ssh_config; \
103                 $(INSTALL) -m644 sshd_config $(sysconfdir)/sshd_config; \
104         fi
105
106 distclean: clean
107         rm -f Makefile config.h core *~
108
109 mrproper: distclean
110
111 veryclean: distclean
112         rm -f configure config.h.in
113
This page took 0.04536 seconds and 5 git commands to generate.