]> andersk Git - gssapi-openssh.git/blame - openssh/Makefile.in
Initial revision
[gssapi-openssh.git] / openssh / Makefile.in
CommitLineData
3c0ef626 1# $Id$
2
3prefix=@prefix@
4exec_prefix=@exec_prefix@
5bindir=@bindir@
6sbindir=@sbindir@
7libexecdir=@libexecdir@
8datadir=@datadir@
9mandir=@mandir@
10mansubdir=@mansubdir@
11sysconfdir=@sysconfdir@
12piddir=@piddir@
13srcdir=@srcdir@
14top_srcdir=@top_srcdir@
15
16DESTDIR=
17VPATH=@srcdir@
18SSH_PROGRAM=@bindir@/ssh
19ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
20SFTP_SERVER=$(libexecdir)/sftp-server
21
22PATHS= -DETCDIR=\"$(sysconfdir)\" \
23 -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
24 -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
25 -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
26 -D_PATH_SSH_PIDDIR=\"$(piddir)\"
27
28CC=@CC@
29LD=@LD@
30CFLAGS=@CFLAGS@
31CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
32LIBS=@LIBS@
33AR=@AR@
34RANLIB=@RANLIB@
35INSTALL=@INSTALL@
36PERL=@PERL@
37ENT=@ENT@
38XAUTH_PATH=@XAUTH_PATH@
39LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
40EXEEXT=@EXEEXT@
41SSH_MODE= @SSHMODE@
42
43INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
44
45@NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
46
47TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS)
48
5598e598 49LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dh.o dispatch.o mac.o hostfile.o key.o kex.o kexdh.o kexgex.o kexgss.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o scard.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o gss-genr.o
3c0ef626 50
51SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
52
5598e598 53SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-krb5.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o sshpty.o sshlogin.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o auth-skey.o auth-bsdauth.o gss-serv.o
3c0ef626 54
55MANPAGES = scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out
56MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
57MANTYPE = @MANTYPE@
58
59CONFIGFILES=sshd_config.out ssh_config.out moduli.out
60CONFIGFILES_IN=sshd_config ssh_config moduli
61
62PATHSUBS = \
63 -D/etc/ssh_config=$(sysconfdir)/ssh_config \
64 -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
65 -D/etc/sshd_config=$(sysconfdir)/sshd_config \
66 -D/usr/libexec=$(libexecdir) \
67 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
68 -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key \
69 -D/etc/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
70 -D/etc/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
71 -D/var/run/sshd.pid=$(piddir)/sshd.pid \
72 -D/etc/moduli=$(sysconfdir)/moduli \
73 -D/etc/sshrc=$(sysconfdir)/sshrc \
74 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
75 -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
76
77FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
78
79all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
80
81$(LIBSSH_OBJS): config.h
82$(SSHOBJS): config.h
83$(SSHDOBJS): config.h
84
85.c.o:
86 $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
87
88LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
89$(LIBCOMPAT): always
90 (cd openbsd-compat && $(MAKE))
91always:
92
93libssh.a: $(LIBSSH_OBJS)
94 $(AR) rv $@ $(LIBSSH_OBJS)
95 $(RANLIB) $@
96
97ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
98 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
99
100sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
101 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
102
103scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o
104 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
105
106ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
107 $(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
108
109ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o
110 $(LD) -o $@ ssh-agent.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
111
112ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
113 $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
114
115ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
116 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
117
118sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o
119 $(LD) -o $@ sftp-server.o sftp-common.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
120
121sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-int.o sftp-common.o sftp-glob.o
122 $(LD) -o $@ sftp.o sftp-client.o sftp-common.o sftp-int.o sftp-glob.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
123
124# test driver for the loginrec code - not built by default
125logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
126 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
127
128$(MANPAGES): $(MANPAGES_IN)
129 if test "$(MANTYPE)" = "cat"; then \
130 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
131 else \
132 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
133 fi; \
134 if test "$(MANTYPE)" = "man"; then \
135 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@; \
136 else \
137 $(FIXPATHSCMD) $${manpage} > $@; \
138 fi
139
140$(CONFIGFILES): $(CONFIGFILES_IN)
141 conffile=`echo $@ | sed 's/.out$$//'`; \
142 $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
143
144clean:
145 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
146 rm -f *.out core
147 (cd openbsd-compat && $(MAKE) clean)
148
149distclean:
150 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
151 rm -f *.out core
152 rm -f Makefile config.h config.status ssh_prng_cmds *~
153 rm -rf autom4te.cache
154 (cd openbsd-compat && $(MAKE) distclean)
155 (cd scard && $(MAKE) distclean)
156
157veryclean:
158 rm -f configure config.h.in *.0
159 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
160 rm -f *.out core
161 rm -f Makefile config.h config.status ssh_prng_cmds *~
162 (cd openbsd-compat && $(MAKE) distclean)
163 (cd scard && $(MAKE) distclean)
164
165mrproper: distclean
166
167catman-do:
168 @for f in $(MANPAGES_IN) ; do \
169 base=`echo $$f | sed 's/\..*$$//'` ; \
170 echo "$$f -> $$base.0" ; \
171 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
172 >$$base.0 ; \
173 done
174
175distprep: catman-do
176 autoreconf
177 (cd scard && $(MAKE) -f Makefile.in distprep)
178
179install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
180install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
181
182scard-install:
183 (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
184
185install-files: scard-install
186 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
187 $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
188 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
189 $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
190 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
191 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
192 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
193 $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
194 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
195 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
196 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
197 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
198 $(INSTALL) -m 0755 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
199 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
200 @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
201 @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(SFTP_SERVER)
202 $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
203 $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
204 $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
205 $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
206 $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
207 $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
208 $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
209 @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
210 @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
211 -rm -f $(DESTDIR)$(bindir)/slogin
212 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
213 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
214 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
215 #@FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
216 if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
217 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
218 fi
219 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
220 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
221 else \
222 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
223 fi
224 if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
225 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
226 else \
227 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
228 fi
229 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
230 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
231 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
232 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
233 else \
234 echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
235 fi ; \
236 fi
237 if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
238 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
239 echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
240 mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
241 else \
242 $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
243 fi ; \
244 else \
245 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
246 fi
247
248host-key: ssh-keygen$(EXEEXT)
249 if [ -z "$(DESTDIR)" ] ; then \
250 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
251 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
252 else \
253 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
254 fi ; \
255 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
256 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
257 else \
258 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
259 fi ; \
260 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
261 echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
262 else \
263 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
264 fi ; \
265 fi ;
266
267host-key-force: ssh-keygen$(EXEEXT)
268 ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
269 ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
270 ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
271
272uninstallall: uninstall
273 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
274 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
275 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
276 -rmdir $(DESTDIR)$(sysconfdir)
277 -rmdir $(DESTDIR)$(bindir)
278 -rmdir $(DESTDIR)$(sbindir)
279 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
280 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
281 -rmdir $(DESTDIR)$(mandir)
282 -rmdir $(DESTDIR)$(libexecdir)
283
284uninstall:
285 -rm -f $(DESTDIR)$(bindir)/slogin
286 -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
287 -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
288 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
289 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
290 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
291 -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
292 -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
293 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
294 -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
295 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
296 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
297 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
298 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
299 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
300 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
301 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
302 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
303 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
304 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
This page took 0.1332 seconds and 5 git commands to generate.