]> andersk Git - openssh.git/blob - Makefile.in
- (djm) More makefile infrastructre for smartcard support, also based
[openssh.git] / Makefile.in
1 # $Id$
2
3 prefix=@prefix@
4 exec_prefix=@exec_prefix@
5 bindir=@bindir@
6 sbindir=@sbindir@
7 libexecdir=@libexecdir@
8 datadir=@datadir@
9 mandir=@mandir@
10 mansubdir=@mansubdir@
11 sysconfdir=@sysconfdir@
12 piddir=@piddir@
13 srcdir=@srcdir@
14 top_srcdir=@top_srcdir@
15
16 DESTDIR=
17 VPATH=@srcdir@
18 SSH_PROGRAM=@bindir@/ssh
19 ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
20 SFTP_SERVER=$(libexecdir)/sftp-server
21
22 PATHS= -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
28 CC=@CC@
29 LD=@LD@
30 CFLAGS=@CFLAGS@
31 CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
32 LIBS=@LIBS@
33 AR=@AR@
34 RANLIB=@RANLIB@
35 INSTALL=@INSTALL@
36 PERL=@PERL@
37 ENT=@ENT@
38 XAUTH_PATH=@XAUTH_PATH@
39 LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
40 EXEEXT=@EXEEXT@
41 SSH_MODE= @SSHMODE@
42
43 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
44
45 @NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
46
47 TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS)
48
49 LIBSSH_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 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 
50
51 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
52
53 SSHDOBJS= 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 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
54
55 MANPAGES        = 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
56 MANPAGES_IN     = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
57 MANTYPE         = @MANTYPE@
58
59 CONFIGFILES=sshd_config.out ssh_config.out moduli.out
60 CONFIGFILES_IN=sshd_config ssh_config moduli
61
62 PATHSUBS        = \
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
77 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
78
79 all: $(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
88 LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
89 $(LIBCOMPAT): config.h
90         (cd openbsd-compat; $(MAKE))
91
92 libssh.a: $(LIBSSH_OBJS)
93         $(AR) rv $@ $(LIBSSH_OBJS)
94         $(RANLIB) $@
95
96 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
97         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
98
99 sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
100         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
101
102 scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o
103         $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
104
105 ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
106         $(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
107
108 ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o
109         $(LD) -o $@ ssh-agent.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
110
111 ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
112         $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
113
114 ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
115         $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS) 
116
117 sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o
118         $(LD) -o $@ sftp-server.o sftp-common.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
119
120 sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-int.o sftp-common.o sftp-glob.o
121         $(LD) -o $@ sftp.o sftp-client.o sftp-common.o sftp-int.o sftp-glob.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
122
123 # test driver for the loginrec code - not built by default
124 logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
125         $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
126
127 $(MANPAGES): $(MANPAGES_IN)
128         if test "$(MANTYPE)" = "cat"; then \
129                 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
130         else \
131                 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
132         fi; \
133         if test "$(MANTYPE)" = "man"; then \
134                 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@; \
135         else \
136                 $(FIXPATHSCMD) $${manpage} > $@; \
137         fi
138
139 $(CONFIGFILES): $(CONFIGFILES_IN)
140         conffile=`echo $@ | sed 's/.out$$//'`; \
141         $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
142
143 clean:
144         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
145         rm -f *.out core
146         (cd openbsd-compat; $(MAKE) clean)
147
148 distclean:
149         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
150         rm -f *.out core
151         rm -f Makefile config.h config.status ssh_prng_cmds *~
152         (cd openbsd-compat; $(MAKE) distclean)
153         (cd scard; $(MAKE) distclean)
154
155 veryclean:
156         rm -f configure config.h.in *.0
157         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
158         rm -f *.out core
159         rm -f Makefile config.h config.status ssh_prng_cmds *~
160         (cd openbsd-compat; $(MAKE) distclean)
161
162 mrproper: distclean
163
164 catman-do:
165         @for f in $(MANPAGES_IN) ; do \
166                 base=`echo $$f | sed 's/\..*$$//'` ; \
167                 echo "$$f -> $$base.0" ; \
168                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
169                         >$$base.0 ; \
170         done
171
172 distprep: catman-do
173         autoreconf
174         (cd scard ; $(MAKE) -f Makefile.in distprep)
175
176 install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
177 install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
178
179 scard-install:
180         (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install)
181
182 install-files: scard-install
183         $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
184         $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
185         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
186         $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
187         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
188         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
189         $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
190         $(INSTALL) -m $(SSH_MODE) -s ssh $(DESTDIR)$(bindir)/ssh
191         $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
192         $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
193         $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
194         $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
195         $(INSTALL) -m 0755 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
196         $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
197         @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
198         @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(SFTP_SERVER)
199         $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
200         $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
201         $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
202         $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
203         $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
204         $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
205         $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
206         @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
207         @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
208         -rm -f $(DESTDIR)$(bindir)/slogin
209         ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
210         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
211         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
212         #@FILEPRIV@ -f dev,filesys,driver $(DESTDIR)$(bindir)/ssh $(DESTDIR)$(bindir)/slogin
213         if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
214                 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
215         fi
216         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
217                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
218         else \
219                 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
220         fi
221         if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
222                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
223         else \
224                 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
225         fi
226         if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
227                 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
228                 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
229                         $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
230                 else \
231                         echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
232                 fi ; \
233         fi
234         if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
235                 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
236                         echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
237                         mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
238                 else \
239                         $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
240                 fi ; \
241         else \
242                 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
243         fi
244
245 host-key: ssh-keygen$(EXEEXT)
246         if [ -z "$(DESTDIR)" ] ; then \
247                 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
248                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
249                 else \
250                         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
251                 fi ; \
252                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
253                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
254                 else \
255                         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
256                 fi ; \
257                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
258                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
259                 else \
260                         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
261                 fi ; \
262         fi ;
263
264 host-key-force: ssh-keygen$(EXEEXT)
265         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
266         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
267         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
268
269 uninstallall:   uninstall
270         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
271         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
272         -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
273         -rmdir $(DESTDIR)$(sysconfdir)
274         -rmdir $(DESTDIR)$(bindir)
275         -rmdir $(DESTDIR)$(sbindir)
276         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
277         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
278         -rmdir $(DESTDIR)$(mandir)
279         -rmdir $(DESTDIR)$(libexecdir)
280
281 uninstall: 
282         -rm -f $(DESTDIR)$(bindir)/slogin
283         -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
284         -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
285         -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
286         -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
287         -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
288         -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
289         -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
290         -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
291         -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
292         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
293         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
294         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
295         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
296         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
297         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
298         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
299         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
300         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
301         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
This page took 0.0582 seconds and 5 git commands to generate.