]> andersk Git - openssh.git/blob - Makefile.in
Two Ooops. =)
[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 mansubdir=@mansubdir@
8 sysconfdir=@sysconfdir@
9 piddir=@piddir@
10 srcdir=@srcdir@
11 top_srcdir=@top_srcdir@
12
13 DESTDIR=
14
15 VPATH=@srcdir@
16
17 SSH_PROGRAM=@bindir@/ssh
18 ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
19
20 CC=@CC@
21 LD=@LD@
22 PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
23 CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
24 LIBS=@LIBS@
25 AR=@AR@
26 RANLIB=@RANLIB@
27 INSTALL=@INSTALL@
28 PERL=@PERL@
29 ENT=@ENT@
30 LDFLAGS=-L. @LDFLAGS@
31 EXEEXT=@EXEEXT@
32 SSH_MODE= @SSHMODE@
33
34 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
35
36 TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) $(EXTRA_TARGETS)
37
38 LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o cli.o compat.o compress.o crc32.o cygwin_util.o deattack.o dispatch.o dsa.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o util.o uuencode.o xmalloc.o 
39
40 LIBOPENBSD_COMPAT_OBJS=bsd-arc4random.o bsd-base64.o bsd-bindresvport.o bsd-daemon.o bsd-getcwd.o bsd-inet_aton.o bsd-inet_ntoa.o bsd-misc.o bsd-mktemp.o bsd-realpath.o bsd-rresvport.o bsd-setenv.o bsd-sigaction.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bsd-strsep.o bsd-strtok.o bsd-vis.o bsd-setproctitle.o bsd-waitpid.o fake-getaddrinfo.o fake-getnameinfo.o next-posix.o
41
42 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
43
44 SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-skey.o auth2-skey.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o dh.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o
45
46 TROFFMAN        = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8 sftp-server.8
47 CATMAN          = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0 sftp-server.0
48 MANPAGES        = @MANTYPE@
49
50 CONFIGFILES=sshd_config ssh_config
51
52 PATHSUBS        = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts -D/etc/sshd_config=$(sysconfdir)/sshd_config -D/usr/libexec=$(libexecdir) -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key -D/var/run/sshd.pid=$(piddir)/sshd.pid
53
54 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
55
56 all: $(TARGETS) $(CONFIGFILES)
57
58 manpages: $(MANPAGES)
59
60 $(LIBSSH_OBJS): config.h
61
62 $(LIBOPENBSD_COMPAT_OBJS): config.h
63
64 libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
65         $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
66         $(RANLIB) $@
67
68 libssh.a: $(LIBSSH_OBJS)
69         $(AR) rv $@ $(LIBSSH_OBJS)
70         $(RANLIB) $@
71
72 ssh$(EXEEXT): libopenbsd-compat.a libssh.a $(SSHOBJS)
73         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
74
75 sshd$(EXEEXT): libssh.a libopenbsd-compat.a $(SSHDOBJS)
76         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
77
78 scp$(EXEEXT): libopenbsd-compat.a libssh.a scp.o
79         $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
80
81 ssh-add$(EXEEXT): libopenbsd-compat.a libssh.a ssh-add.o log-client.o
82         $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
83
84 ssh-agent$(EXEEXT): libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
85         $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
86
87 ssh-keygen$(EXEEXT): libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
88         $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
89
90 sftp-server$(EXEEXT): libopenbsd-compat.a libssh.a sftp-server.o log-server.o
91         $(LD) -o $@ sftp-server.o log-server.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
92
93 # test driver for the loginrec code - not built by default
94 logintest: logintest.o libopenbsd-compat.a libssh.a log-client.o loginrec.o
95         $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
96
97 $(MANPAGES) $(CONFIGFILES)::
98         $(FIXPATHSCMD) $(srcdir)/$@
99
100 clean:
101         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
102         rm -f *.out core
103
104 distclean: clean
105         rm -f Makefile config.h config.status ssh_prng_cmds *~
106
107 mrproper: distclean
108
109 veryclean: distclean
110         rm -f configure config.h.in *.0
111
112 catman-do:
113         @for f in $(TROFFMAN) ; do \
114                 echo "$$f -> $${f%%.[18]}.0" ; \
115                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
116                         >$${f%%.[18]}.0 ; \
117         done
118
119 distprep: catman-do
120         autoreconf
121
122 install: manpages $(TARGETS) install-files host-key
123
124 install-files:
125         $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
126         $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
127         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
128         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
129         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
130         $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
131         $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
132         $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
133         $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
134         $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
135         $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
136         $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
137         $(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(libexecdir)/sftp-server
138         $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
139         $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
140         $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
141         $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
142         $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
143         $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
144         $(INSTALL) -m 644 sftp-server.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
145         -rm -f $(DESTDIR)$(bindir)/slogin
146         ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
147         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
148         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
149         @FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
150         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
151                 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
152                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
153                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
154         fi
155         if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
156                 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
157                 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
158                         $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
159                 fi ; \
160         fi
161
162 host-key: ssh-keygen$(EXEEXT)
163         if [ -z "$(DESTDIR)" ] ; then \
164                 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
165                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
166                 else \
167                         $(srcdir)/ssh-keygen -b 1024 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
168                 fi ; \
169                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
170                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
171                 else \
172                         $(srcdir)/ssh-keygen -d -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
173                 fi ; \
174         fi ;
175
176 host-key-force: ssh-keygen$(EXEEXT)
177         $(srcdir)/ssh-keygen -b 1024 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
178         $(srcdir)/ssh-keygen -d -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
179
180 uninstallall:   uninstall
181         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
182         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
183         -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
184         -rmdir $(DESTDIR)$(sysconfdir)
185         -rmdir $(DESTDIR)$(bindir)
186         -rmdir $(DESTDIR)$(sbindir)
187         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
188         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
189         -rmdir $(DESTDIR)$(mandir)
190         -rmdir $(DESTDIR)$(libexecdir)
191
192 uninstall: 
193         -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
194         -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
195         -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
196         -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
197         -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
198         -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
199         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
200         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
201         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
202         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
203         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
204         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
205         -rm -f $(DESTDIR)$(bindir)/slogin
206         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
207         -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
208         -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.150346 seconds and 5 git commands to generate.