]> andersk Git - openssh.git/blame - Makefile.in
- (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
[openssh.git] / Makefile.in
CommitLineData
5881cd60 1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
42b89914 5libexecdir=@libexecdir@
bb0dd7f6 6mandir=@mandir@
c54a6257 7mansubdir=@mansubdir@
af381f02 8sysconfdir=@sysconfdir@
19d9ac2a 9piddir=@piddir@
10srcdir=@srcdir@
11top_srcdir=@top_srcdir@
5881cd60 12
ff8ecdb8 13DESTDIR=
14
d2dcff5f 15VPATH=@srcdir@
16
d4f11b59 17SSH_PROGRAM=@bindir@/ssh
7f8f5e00 18ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
d4f11b59 19
5881cd60 20CC=@CC@
d423d822 21LD=@LD@
db28aeb5 22PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
6c33bf70 23CFLAGS=@CFLAGS@ -I. -I$(srcdir) $(PATHS) @DEFS@
17f0f4a7 24LIBS=@LIBS@
5881cd60 25AR=@AR@
26RANLIB=@RANLIB@
cf8dd513 27INSTALL=@INSTALL@
a0f84251 28PERL=@PERL@
ad85db64 29ENT=@ENT@
6cfb695b 30LDFLAGS=-L. @LDFLAGS@
3c62e7eb 31EXEEXT=@EXEEXT@
5881cd60 32
d3083fbd 33INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
34
3c62e7eb 35TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) $(EXTRA_TARGETS)
48e671d5 36
3c62e7eb 37LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o cygwin_util.o deattack.o dispatch.o dsa.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o util.o uuencode.o xmalloc.o
3dc1102e 38
ce5b17f4 39LIBOPENBSD_COMPAT_OBJS=bsd-arc4random.o bsd-base64.o bsd-bindresvport.o bsd-daemon.o bsd-inet_aton.o bsd-inet_ntoa.o bsd-misc.o bsd-mktemp.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 fake-getaddrinfo.o fake-getnameinfo.o next-posix.o
6cfb695b 40
a306f2dd 41SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
a5c9cd31 42
38c295d6 43SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o
a5c9cd31 44
b5e300c2 45TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8 sftp-server.8
46CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0 sftp-server.0
c54a6257 47MANPAGES = @MANTYPE@
a1ec4d79 48
49CONFIGFILES=sshd_config ssh_config
50
7f377177 51PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts -D/etc/sshd_config=$(sysconfdir)/sshd_config -D/usr/libexec=$(libexecdir) -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key -D/var/run/sshd.pid=$(piddir)/sshd.pid
5f4fdfae 52
53FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
54
6c081128 55all: $(TARGETS) $(CONFIGFILES)
56
57manpages: $(MANPAGES)
6cfb695b 58
3dc1102e 59$(LIBSSH_OBJS): config.h
60
61$(LIBOPENBSD_COMPAT_OBJS): config.h
62
63libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
64 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
65 $(RANLIB) $@
f74efc8d 66
3dc1102e 67libssh.a: $(LIBSSH_OBJS)
68 $(AR) rv $@ $(LIBSSH_OBJS)
5881cd60 69 $(RANLIB) $@
70
3c62e7eb 71ssh$(EXEEXT): libopenbsd-compat.a libssh.a $(SSHOBJS)
3dc1102e 72 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 73
3c62e7eb 74sshd$(EXEEXT): libssh.a libopenbsd-compat.a $(SSHDOBJS)
3dc1102e 75 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 76
3c62e7eb 77scp$(EXEEXT): libopenbsd-compat.a libssh.a scp.o
3dc1102e 78 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 79
3c62e7eb 80ssh-add$(EXEEXT): libopenbsd-compat.a libssh.a ssh-add.o log-client.o
3dc1102e 81 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 82
3c62e7eb 83ssh-agent$(EXEEXT): libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
3dc1102e 84 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 85
3c62e7eb 86ssh-keygen$(EXEEXT): libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
3dc1102e 87 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 88
3c62e7eb 89sftp-server$(EXEEXT): libopenbsd-compat.a libssh.a sftp-server.o log-server.o
b5e300c2 90 $(LD) -o $@ sftp-server.o log-server.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
91
1d7b9b20 92# test driver for the loginrec code - not built by default
93logintest: logintest.o libopenbsd-compat.a libssh.a log-client.o loginrec.o
94 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
95
5f4fdfae 96$(MANPAGES) $(CONFIGFILES)::
97 $(FIXPATHSCMD) $(srcdir)/$@
e1a9c08d 98
48e671d5 99clean:
1d7b9b20 100 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
c04f75f1 101 rm -f *.out core
48e671d5 102
103distclean: clean
c04f75f1 104 rm -f Makefile config.h config.status ssh_prng_cmds *~
48e671d5 105
106mrproper: distclean
107
108veryclean: distclean
c54a6257 109 rm -f configure config.h.in *.0
110
111catman-do:
112 @for f in $(TROFFMAN) ; do \
113 echo "$$f -> $${f%%.[18]}.0" ; \
114 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
115 >$${f%%.[18]}.0 ; \
116 done
48e671d5 117
9e0c3e1f 118distprep: catman-do
119 autoreconf
120
f528fdf2 121install: manpages $(TARGETS) install-files host-key
122
123install-files:
fc1e8bf4 124 ./mkinstalldirs $(DESTDIR)$(bindir)
125 ./mkinstalldirs $(DESTDIR)$(sbindir)
126 ./mkinstalldirs $(DESTDIR)$(mandir)
127 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
128 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
7f8f5e00 129 ./mkinstalldirs $(DESTDIR)$(libexecdir)
05e84bdf 130 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
f9bcea07 131 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
132 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
133 $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
134 $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
135 $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
7f8f5e00 136 $(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(libexecdir)/sftp-server
ff8ecdb8 137 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
138 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
139 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
140 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
141 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
142 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
b5e300c2 143 $(INSTALL) -m 644 sftp-server.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
ff8ecdb8 144 -rm -f $(DESTDIR)$(bindir)/slogin
3c62e7eb 145 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
ff8ecdb8 146 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
147 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
ff8ecdb8 148 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
fc1e8bf4 149 ./mkinstalldirs $(DESTDIR)$(sysconfdir); \
ff8ecdb8 150 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
151 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
af381f02 152 fi
d3083fbd 153 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
ad85db64 154 $(PERL) fixprogs ssh_prng_cmds $(ENT); \
155 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
d3083fbd 156 fi
af381f02 157
3c62e7eb 158host-key: ssh-keygen$(EXEEXT)
eb37534b 159 if [ -z "$(DESTDIR)" ] ; then \
160 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
161 echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
162 else \
163 ./ssh-keygen -b 1024 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
164 fi ; \
165 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
166 echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
167 else \
168 ./ssh-keygen -d -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
169 fi ; \
f528fdf2 170 fi ;
171
3c62e7eb 172host-key-force: ssh-keygen$(EXEEXT)
732e8ac5 173 ./ssh-keygen -b 1024 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
174 ./ssh-keygen -d -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
6bf4d066 175
8946db53 176uninstallall: uninstall
ff8ecdb8 177 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
178 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
d3083fbd 179 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
ff8ecdb8 180 -rmdir $(DESTDIR)$(sysconfdir)
181 -rmdir $(DESTDIR)$(bindir)
182 -rmdir $(DESTDIR)$(sbindir)
183 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
184 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
185 -rmdir $(DESTDIR)$(mandir)
186 -rmdir $(DESTDIR)$(libexecdir)
8946db53 187
188uninstall:
3c62e7eb 189 -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
190 -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
191 -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
192 -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
193 -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
194 -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
ff8ecdb8 195 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
196 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
197 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
198 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
199 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
200 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
201 -rm -f $(DESTDIR)$(bindir)/slogin
202 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
203 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
204 -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.336025 seconds and 5 git commands to generate.