]> andersk Git - openssh.git/blob - Makefile.in
- OpenBSD CVS update
[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 LDFLAGS=-L. @LDFLAGS@
31
32 TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
33
34 LIBOBJS= atomicio.o authfd.o authfile.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 bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.o fake-getaddrinfo.o fake-getnameinfo.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 
35
36 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
37
38 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
39
40 TROFFMAN        = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
41 CATMAN          = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
42 MANPAGES        = @MANTYPE@
43
44 CONFIGFILES=sshd_config ssh_config
45
46 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
47
48 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
49
50 all: $(TARGETS) $(CONFIGFILES)
51
52 manpages: $(MANPAGES)
53
54 $(LIBOBJS): config.h
55
56 libssh.a: $(LIBOBJS)
57         $(AR) rv $@ $(LIBOBJS)
58         $(RANLIB) $@
59
60 ssh: libssh.a $(SSHOBJS)
61         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
62
63 sshd: libssh.a  $(SSHDOBJS)
64         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS)
65
66 scp: libssh.a scp.o
67         $(LD) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS) 
68
69 ssh-add: libssh.a ssh-add.o log-client.o
70         $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
71
72 ssh-agent: libssh.a ssh-agent.o log-client.o
73         $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
74
75 ssh-keygen: libssh.a ssh-keygen.o log-client.o
76         $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
77
78 $(MANPAGES) $(CONFIGFILES)::
79         $(FIXPATHSCMD) $(srcdir)/$@
80
81 clean:
82         rm -f *.o *.a $(TARGETS) config.status config.cache config.log 
83         rm -f *.out core
84
85 distclean: clean
86         rm -f Makefile config.h core *~
87
88 mrproper: distclean
89
90 veryclean: distclean
91         rm -f configure config.h.in *.0
92
93 catman-do:
94         @for f in $(TROFFMAN) ; do \
95                 echo "$$f -> $${f%%.[18]}.0" ; \
96                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
97                         >$${f%%.[18]}.0 ; \
98         done
99
100 install: manpages $(TARGETS)
101         $(INSTALL) -d $(DESTDIR)$(bindir)
102         $(INSTALL) -d $(DESTDIR)$(sbindir)
103         $(INSTALL) -d $(DESTDIR)$(mandir)
104         $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1
105         $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8
106         $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
107         $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
108         $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
109         $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
110         $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
111         $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
112         $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
113         $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
114         $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
115         $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
116         $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
117         $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
118         -rm -f $(DESTDIR)$(bindir)/slogin
119         ln -s ssh $(DESTDIR)$(bindir)/slogin
120         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
121         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
122
123         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
124                 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \
125                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
126                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
127         fi
128
129 host-key: ssh-keygen
130         ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
131
132 uninstallall:   uninstall
133         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
134         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
135         -rmdir $(DESTDIR)$(sysconfdir)
136         -rmdir $(DESTDIR)$(bindir)
137         -rmdir $(DESTDIR)$(sbindir)
138         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
139         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
140         -rmdir $(DESTDIR)$(mandir)
141         -rmdir $(DESTDIR)$(libexecdir)
142
143 uninstall: 
144         -rm -f $(DESTDIR)$(bindir)/ssh
145         -rm -f $(DESTDIR)$(bindir)/scp
146         -rm -f $(DESTDIR)$(bindir)/ssh-add
147         -rm -f $(DESTDIR)$(bindir)/ssh-agent
148         -rm -f $(DESTDIR)$(bindir)/ssh-keygen
149         -rm -f $(DESTDIR)$(sbindir)/sshd
150         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
151         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
152         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
153         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
154         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
155         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
156         -rm -f $(DESTDIR)$(bindir)/slogin
157         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
158         -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
159         -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.05006 seconds and 5 git commands to generate.