]> andersk Git - openssh.git/blame - Makefile.in
- OpenBSD CVS update
[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
bc7ea646 18ASKPASS_LOCATION=@libexecdir@/ssh
19ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
d4f11b59 20
5881cd60 21CC=@CC@
d423d822 22LD=@LD@
db28aeb5 23PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
d4f11b59 24CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
17f0f4a7 25LIBS=@LIBS@
5881cd60 26AR=@AR@
27RANLIB=@RANLIB@
cf8dd513 28INSTALL=@INSTALL@
a0f84251 29PERL=@PERL@
6cfb695b 30LDFLAGS=-L. @LDFLAGS@
5881cd60 31
48e671d5 32TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
33
a306f2dd 34LIBOBJS= 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
6cfb695b 35
a306f2dd 36SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
a5c9cd31 37
a306f2dd 38SSHDOBJS= 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
a5c9cd31 39
c54a6257 40TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
41CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
42MANPAGES = @MANTYPE@
a1ec4d79 43
44CONFIGFILES=sshd_config ssh_config
45
7e31dc81 46PATHSUBS = -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
5f4fdfae 47
48FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
49
6c081128 50all: $(TARGETS) $(CONFIGFILES)
51
52manpages: $(MANPAGES)
6cfb695b 53
f74efc8d 54$(LIBOBJS): config.h
55
6cfb695b 56libssh.a: $(LIBOBJS)
57 $(AR) rv $@ $(LIBOBJS)
5881cd60 58 $(RANLIB) $@
59
48e671d5 60ssh: libssh.a $(SSHOBJS)
d423d822 61 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
5881cd60 62
48e671d5 63sshd: libssh.a $(SSHDOBJS)
d423d822 64 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS)
5881cd60 65
48e671d5 66scp: libssh.a scp.o
d423d822 67 $(LD) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 68
48e671d5 69ssh-add: libssh.a ssh-add.o log-client.o
d423d822 70 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 71
48e671d5 72ssh-agent: libssh.a ssh-agent.o log-client.o
d423d822 73 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 74
48e671d5 75ssh-keygen: libssh.a ssh-keygen.o log-client.o
d423d822 76 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS)
5881cd60 77
5f4fdfae 78$(MANPAGES) $(CONFIGFILES)::
79 $(FIXPATHSCMD) $(srcdir)/$@
e1a9c08d 80
48e671d5 81clean:
82 rm -f *.o *.a $(TARGETS) config.status config.cache config.log
5f4fdfae 83 rm -f *.out core
48e671d5 84
85distclean: clean
86 rm -f Makefile config.h core *~
87
88mrproper: distclean
89
90veryclean: distclean
c54a6257 91 rm -f configure config.h.in *.0
92
93catman-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
48e671d5 99
6c081128 100install: manpages $(TARGETS)
ff8ecdb8 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
05e84bdf 106 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
ff8ecdb8 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
045672f9 122
ff8ecdb8 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; \
af381f02 127 fi
128
6bf4d066 129host-key: ssh-keygen
130 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
131
8946db53 132uninstallall: uninstall
ff8ecdb8 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)
8946db53 142
143uninstall:
ff8ecdb8 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.22476 seconds and 5 git commands to generate.