]> andersk Git - openssh.git/blob - Makefile.in
20001204
[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 XAUTH_PATH=@XAUTH_PATH@
31 LDFLAGS=-L. @LDFLAGS@
32 EXEEXT=@EXEEXT@
33 SSH_MODE= @SSHMODE@
34
35 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
36
37 TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT)
38
39 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 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 ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o util.o uuencode.o xmalloc.o 
40
41 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
42
43 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
44
45 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 auth2-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
46
47 TROFFMAN        = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8 sftp-server.8
48 CATMAN          = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0 sftp-server.0
49 MANPAGES        = @MANTYPE@
50
51 CONFIGFILES=sshd_config ssh_config primes
52
53 PATHSUBS        = \
54         -D/etc/ssh_config=$(sysconfdir)/ssh_config \
55         -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
56         -D/etc/sshd_config=$(sysconfdir)/sshd_config \
57         -D/usr/libexec=$(libexecdir) \
58         -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
59         -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
60         -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
61         -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
62         -D/var/run/sshd.pid=$(piddir)/sshd.pid \
63         -D/etc/primes=$(sysconfdir)/primes \
64         -D/etc/sshrc=$(sysconfdir)/sshrc \
65         -D/usr/X11R6/bin/xauth=$(XAUTH_PATH)
66
67 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
68
69 all: $(TARGETS) $(CONFIGFILES)
70
71 manpages: $(MANPAGES)
72
73 $(LIBSSH_OBJS): config.h
74
75 $(LIBOPENBSD_COMPAT_OBJS): config.h
76
77 libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
78         $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
79         $(RANLIB) $@
80
81 libssh.a: $(LIBSSH_OBJS)
82         $(AR) rv $@ $(LIBSSH_OBJS)
83         $(RANLIB) $@
84
85 ssh$(EXEEXT): libopenbsd-compat.a libssh.a $(SSHOBJS)
86         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
87
88 sshd$(EXEEXT): libssh.a libopenbsd-compat.a $(SSHDOBJS)
89         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
90
91 scp$(EXEEXT): libopenbsd-compat.a libssh.a scp.o
92         $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
93
94 ssh-add$(EXEEXT): libopenbsd-compat.a libssh.a ssh-add.o log-client.o
95         $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
96
97 ssh-agent$(EXEEXT): libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
98         $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
99
100 ssh-keygen$(EXEEXT): libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
101         $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
102
103 sftp-server$(EXEEXT): libopenbsd-compat.a libssh.a sftp-server.o log-server.o
104         $(LD) -o $@ sftp-server.o log-server.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
105
106 # test driver for the loginrec code - not built by default
107 logintest: logintest.o libopenbsd-compat.a libssh.a log-client.o loginrec.o
108         $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
109
110 $(MANPAGES) $(CONFIGFILES)::
111         $(FIXPATHSCMD) $(srcdir)/$@
112
113 clean:
114         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
115         rm -f *.out core
116
117 distclean: clean
118         rm -f Makefile config.h config.status ssh_prng_cmds *~
119
120 mrproper: distclean
121
122 veryclean: distclean
123         rm -f configure config.h.in *.0
124
125 catman-do:
126         @for f in $(TROFFMAN) ; do \
127                 echo "$$f -> $${f%%.[18]}.0" ; \
128                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
129                         >$${f%%.[18]}.0 ; \
130         done
131
132 distprep: catman-do
133         autoreconf
134
135 install: manpages $(TARGETS) install-files host-key
136
137 install-files:
138         $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
139         $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
140         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
141         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
142         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
143         $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
144         $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
145         $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
146         $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
147         $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
148         $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
149         $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
150         $(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(libexecdir)/sftp-server
151         $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
152         $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
153         $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
154         $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
155         $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
156         $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
157         $(INSTALL) -m 644 sftp-server.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
158         -rm -f $(DESTDIR)$(bindir)/slogin
159         ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
160         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
161         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
162         @FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
163         if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
164                 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
165         fi
166         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
167                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
168         else \
169                 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
170         fi
171         if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
172                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
173         else \
174                 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
175         fi
176         if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
177                 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
178                 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
179                         $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
180                 else \
181                         echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
182                 fi ; \
183         fi
184         if [ ! -f $(DESTDIR)$(sysconfdir)/primes ]; then \
185                 $(INSTALL) -m 644 primes.out $(DESTDIR)$(sysconfdir)/primes; \
186         else \
187                 echo "$(DESTDIR)$(sysconfdir)/primes already exists, install will not overwrite"; \
188         fi
189
190 host-key: ssh-keygen$(EXEEXT)
191         if [ -z "$(DESTDIR)" ] ; then \
192                 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
193                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
194                 else \
195                         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
196                 fi ; \
197                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
198                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
199                 else \
200                         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
201                 fi ; \
202                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
203                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
204                 else \
205                         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
206                 fi ; \
207         fi ;
208
209 host-key-force: ssh-keygen$(EXEEXT)
210         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
211         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
212         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
213
214 uninstallall:   uninstall
215         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
216         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
217         -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
218         -rmdir $(DESTDIR)$(sysconfdir)
219         -rmdir $(DESTDIR)$(bindir)
220         -rmdir $(DESTDIR)$(sbindir)
221         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
222         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
223         -rmdir $(DESTDIR)$(mandir)
224         -rmdir $(DESTDIR)$(libexecdir)
225
226 uninstall: 
227         -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
228         -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
229         -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
230         -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
231         -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
232         -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
233         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
234         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
235         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
236         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
237         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
238         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
239         -rm -f $(DESTDIR)$(bindir)/slogin
240         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
241         -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
242         -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.056926 seconds and 5 git commands to generate.