]> andersk Git - openssh.git/blob - Makefile.in
- Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
[openssh.git] / Makefile.in
1 prefix=@prefix@
2 exec_prefix=@exec_prefix@
3 bindir=@bindir@
4 sbindir=@sbindir@
5 libexecdir=@libexecdir@
6 mandir=@mandir@
7 mansubdir=@mansubdir@
8 sysconfdir=@sysconfdir@
9 piddir=@piddir@
10 srcdir=@srcdir@
11 top_srcdir=@top_srcdir@
12
13 DESTDIR=
14
15 VPATH=@srcdir@
16
17 SSH_PROGRAM=@bindir@/ssh
18 ASKPASS_LOCATION=@libexecdir@/ssh
19 ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
20
21 CC=@CC@
22 LD=@LD@
23 PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
24 CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
25 LIBS=@LIBS@
26 AR=@AR@
27 RANLIB=@RANLIB@
28 INSTALL=@INSTALL@
29 PERL=@PERL@
30 ENT=@ENT@
31 LDFLAGS=-L. @LDFLAGS@
32
33 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
34
35 TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
36
37 LIBSSH_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
39 LIBOPENBSD_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 
40
41 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
42
43 SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-rhosts.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o md5crypt.o session.o
44
45 TROFFMAN        = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
46 CATMAN          = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
47 MANPAGES        = @MANTYPE@
48
49 CONFIGFILES=sshd_config ssh_config
50
51 PATHSUBS        = -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
53 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
54
55 all: $(TARGETS) $(CONFIGFILES)
56
57 manpages: $(MANPAGES)
58
59 $(LIBSSH_OBJS): config.h
60
61 $(LIBOPENBSD_COMPAT_OBJS): config.h
62
63 libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
64         $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
65         $(RANLIB) $@
66
67 libssh.a: $(LIBSSH_OBJS)
68         $(AR) rv $@ $(LIBSSH_OBJS)
69         $(RANLIB) $@
70
71 ssh: libopenbsd-compat.a libssh.a $(SSHOBJS)
72         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
73
74 sshd: libssh.a  libopenbsd-compat.a $(SSHDOBJS)
75         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
76
77 scp: libopenbsd-compat.a libssh.a scp.o
78         $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
79
80 ssh-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
83 ssh-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
86 ssh-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 $(MANPAGES) $(CONFIGFILES)::
90         $(FIXPATHSCMD) $(srcdir)/$@
91
92 clean:
93         rm -f *.o *.a $(TARGETS) config.cache config.log 
94         rm -f *.out core
95
96 distclean: clean
97         rm -f Makefile config.h config.status ssh_prng_cmds *~
98
99 mrproper: distclean
100
101 veryclean: distclean
102         rm -f configure config.h.in *.0
103
104 catman-do:
105         @for f in $(TROFFMAN) ; do \
106                 echo "$$f -> $${f%%.[18]}.0" ; \
107                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
108                         >$${f%%.[18]}.0 ; \
109         done
110
111 install: manpages $(TARGETS)
112         $(INSTALL) -d $(DESTDIR)$(bindir)
113         $(INSTALL) -d $(DESTDIR)$(sbindir)
114         $(INSTALL) -d $(DESTDIR)$(mandir)
115         $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1
116         $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8
117         $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
118         $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
119         $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
120         $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
121         $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
122         $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
123         $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
124         $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
125         $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
126         $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
127         $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
128         $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
129         -rm -f $(DESTDIR)$(bindir)/slogin
130         ln -s ssh $(DESTDIR)$(bindir)/slogin
131         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
132         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
133
134         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
135                 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \
136                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
137                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
138         fi
139         if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
140                 $(PERL) fixprogs ssh_prng_cmds $(ENT); \
141                 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
142         fi
143
144 host-key: ssh-keygen
145         ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ""
146         ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N ""
147
148 uninstallall:   uninstall
149         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
150         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
151         -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
152         -rmdir $(DESTDIR)$(sysconfdir)
153         -rmdir $(DESTDIR)$(bindir)
154         -rmdir $(DESTDIR)$(sbindir)
155         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
156         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
157         -rmdir $(DESTDIR)$(mandir)
158         -rmdir $(DESTDIR)$(libexecdir)
159
160 uninstall: 
161         -rm -f $(DESTDIR)$(bindir)/ssh
162         -rm -f $(DESTDIR)$(bindir)/scp
163         -rm -f $(DESTDIR)$(bindir)/ssh-add
164         -rm -f $(DESTDIR)$(bindir)/ssh-agent
165         -rm -f $(DESTDIR)$(bindir)/ssh-keygen
166         -rm -f $(DESTDIR)$(sbindir)/sshd
167         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
168         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
169         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
170         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
171         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
172         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
173         -rm -f $(DESTDIR)$(bindir)/slogin
174         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
175         -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
176         -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.052178 seconds and 5 git commands to generate.