]> andersk Git - openssh.git/blame_incremental - Makefile.in
- (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
[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=
14
15VPATH=@srcdir@
16
17SSH_PROGRAM=@bindir@/ssh
18ASKPASS_LOCATION=@libexecdir@/ssh
19ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
20
21CC=@CC@
22LD=@LD@
23PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
24CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
25LIBS=@LIBS@
26AR=@AR@
27RANLIB=@RANLIB@
28INSTALL=@INSTALL@
29PERL=@PERL@
30ENT=@ENT@
31LDFLAGS=-L. @LDFLAGS@
32
33INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
34
35TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
36
37LIBSSH_OBJS=atomicio.o authfd.o authfile.o aux.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.o fingerprint.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 uuencode.o xmalloc.o
38
39LIBOPENBSD_COMPAT_OBJS=bsd-base64.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.o bsd-setenv.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o fake-getaddrinfo.o fake-getnameinfo.o next-posix.o
40
41SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
42
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
44
45TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
46CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
47MANPAGES = @MANTYPE@
48
49CONFIGFILES=sshd_config ssh_config
50
51PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/known_hosts=$(sysconfdir)/ssh_known_hosts -D/etc/sshd_config=$(sysconfdir)/sshd_config -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key -D/var/run/sshd.pid=$(piddir)/sshd.pid
52
53FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
54
55all: $(TARGETS) $(CONFIGFILES)
56
57manpages: $(MANPAGES)
58
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) $@
66
67libssh.a: $(LIBSSH_OBJS)
68 $(AR) rv $@ $(LIBSSH_OBJS)
69 $(RANLIB) $@
70
71ssh: libopenbsd-compat.a libssh.a $(SSHOBJS)
72 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
73
74sshd: libssh.a libopenbsd-compat.a $(SSHDOBJS)
75 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
76
77scp: libopenbsd-compat.a libssh.a scp.o
78 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
79
80ssh-add: libopenbsd-compat.a libssh.a ssh-add.o log-client.o
81 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
82
83ssh-agent: libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
84 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
85
86ssh-keygen: libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
87 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
88
89# test driver for the loginrec code - not built by default
90logintest: logintest.o libopenbsd-compat.a libssh.a log-client.o loginrec.o
91 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
92
93$(MANPAGES) $(CONFIGFILES)::
94 $(FIXPATHSCMD) $(srcdir)/$@
95
96clean:
97 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
98 rm -f *.out core
99
100distclean: clean
101 rm -f Makefile config.h config.status ssh_prng_cmds *~
102
103mrproper: distclean
104
105veryclean: distclean
106 rm -f configure config.h.in *.0
107
108catman-do:
109 @for f in $(TROFFMAN) ; do \
110 echo "$$f -> $${f%%.[18]}.0" ; \
111 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
112 >$${f%%.[18]}.0 ; \
113 done
114
115install: manpages $(TARGETS) install-files host-key
116
117install-files:
118 ./mkinstalldirs $(DESTDIR)$(bindir)
119 ./mkinstalldirs $(DESTDIR)$(sbindir)
120 ./mkinstalldirs $(DESTDIR)$(mandir)
121 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
122 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
123 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
124 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
125 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
126 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
127 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
128 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
129 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
130 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
131 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
132 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
133 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
134 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
135 -rm -f $(DESTDIR)$(bindir)/slogin
136 ln -s ssh $(DESTDIR)$(bindir)/slogin
137 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
138 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
139 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
140 ./mkinstalldirs $(DESTDIR)$(sysconfdir); \
141 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
142 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
143 fi
144 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
145 $(PERL) fixprogs ssh_prng_cmds $(ENT); \
146 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
147 fi
148
149host-key: ssh-keygen
150 if [ -f "$(sysconfdir)/ssh_host_key" ] ; then \
151 echo "$(sysconfdir)/ssh_host_key already exists, skipping." ; \
152 else \
153 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N "" ; \
154 fi ; \
155 if [ -f $(sysconfdir)/ssh_host_dsa_key ] ; then \
156 echo "$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
157 else \
158 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N "" ; \
159 fi ;
160
161host-key-force: ssh-keygen
162 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ""
163 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N ""
164
165uninstallall: uninstall
166 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
167 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
168 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
169 -rmdir $(DESTDIR)$(sysconfdir)
170 -rmdir $(DESTDIR)$(bindir)
171 -rmdir $(DESTDIR)$(sbindir)
172 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
173 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
174 -rmdir $(DESTDIR)$(mandir)
175 -rmdir $(DESTDIR)$(libexecdir)
176
177uninstall:
178 -rm -f $(DESTDIR)$(bindir)/ssh
179 -rm -f $(DESTDIR)$(bindir)/scp
180 -rm -f $(DESTDIR)$(bindir)/ssh-add
181 -rm -f $(DESTDIR)$(bindir)/ssh-agent
182 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
183 -rm -f $(DESTDIR)$(sbindir)/sshd
184 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
185 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
186 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
187 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
188 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
189 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
190 -rm -f $(DESTDIR)$(bindir)/slogin
191 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
192 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
193 -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 1.113893 seconds and 5 git commands to generate.