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