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