]> andersk Git - openssh.git/blob - Makefile.in
- Big manpage and config file cleanup from Andre Lucas
[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 sysconfdir=@sysconfdir@
8 piddir=@piddir@
9 srcdir=@srcdir@
10 top_srcdir=@top_srcdir@
11
12 VPATH=@srcdir@
13
14 SSH_PROGRAM=@bindir@/ssh
15 ASKPASS_LOCATION=@libexecdir@/ssh
16 ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
17
18 CC=@CC@
19 PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
20 CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
21 EXTRA_TARGETS=@GNOME_ASKPASS@
22 LIBS=@LIBS@
23 AR=@AR@
24 RANLIB=@RANLIB@
25 INSTALL=@INSTALL@
26 PERL=@PERL@
27 FIXPATHS=$(PERL) @top_srcdir@/fixpaths -Dsysconfdir=${sysconfdir} -Dpiddir=${piddir}
28 LDFLAGS=-L. @LDFLAGS@
29
30 GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
31 GNOME_LIBS=`gnome-config --libs gnome gnomeui`
32
33 TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
34
35 LIBOBJS= atomicio.o authfd.o authfile.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.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 fake-getaddrinfo.o fake-getnameinfo.o fingerprint.o hostfile.o log.o match.o mpaux.o nchan.o packet.o radix.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o 
36
37 SSHOBJS= ssh.o sshconnect.o log-client.o readconf.o clientloop.o
38
39 SSHDOBJS= sshd.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
40
41 MANPAGES=scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
42
43 CONFIGFILES=sshd_config ssh_config
44
45 all: $(TARGETS) $(MANPAGES) $(CONFIGFILES)
46
47 $(LIBOBJS): config.h
48
49 libssh.a: $(LIBOBJS)
50         $(AR) rv $@ $(LIBOBJS)
51         $(RANLIB) $@
52
53 ssh: libssh.a $(SSHOBJS)
54         $(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
55
56 sshd: libssh.a  $(SSHDOBJS)
57         $(CC) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS)
58
59 scp: libssh.a scp.o
60         $(CC) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS) 
61
62 ssh-add: libssh.a ssh-add.o log-client.o
63         $(CC) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
64
65 ssh-agent: libssh.a ssh-agent.o log-client.o
66         $(CC) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
67
68 ssh-keygen: libssh.a ssh-keygen.o log-client.o
69         $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
70
71 gnome-ssh-askpass: gnome-ssh-askpass.c
72         $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
73
74 scp.1: scp.1.in
75         $(FIXPATHS) $(srcdir)/scp.1.in
76
77 ssh-add.1: ssh-add.1.in
78         $(FIXPATHS) ssh-add.1.in
79
80 ssh-agent.1: ssh-agent.1.in
81         $(FIXPATHS) ssh-agent.1.in
82
83 ssh-keygen.1: ssh-keygen.1.in
84         $(FIXPATHS) ssh-keygen.1.in
85
86 ssh.1: ssh.1.in
87         $(FIXPATHS) ssh.1.in
88
89 sshd.8: sshd.8.in
90         $(FIXPATHS) sshd.8.in
91
92 sshd_config: sshd_config.in
93         $(FIXPATHS) sshd_config.in
94
95 ssh_config: ssh_config.in
96         $(FIXPATHS) ssh_config.in
97
98 clean:
99         rm -f *.o *.a $(TARGETS) config.status config.cache config.log 
100         rm -f core *.1 *.8 sshd_config ssh_config
101
102 distclean: clean
103         rm -f Makefile config.h core *~
104
105 mrproper: distclean
106
107 veryclean: distclean
108         rm -f configure config.h.in
109
110 install: $(TARGETS)
111         $(INSTALL) -d $(bindir)
112         $(INSTALL) -d $(sbindir)
113         $(INSTALL) -d $(mandir)
114         $(INSTALL) -d $(mandir)/man1
115         $(INSTALL) -d $(mandir)/man8
116         $(INSTALL) -s ssh $(bindir)/ssh
117         $(INSTALL) -s scp $(bindir)/scp
118         $(INSTALL) -s ssh-add $(bindir)/ssh-add
119         $(INSTALL) -s ssh-agent $(bindir)/ssh-agent
120         $(INSTALL) -s ssh-keygen $(bindir)/ssh-keygen
121         $(INSTALL) -s sshd $(sbindir)/sshd
122         $(INSTALL) -m 644 ssh.1 $(mandir)/man1/ssh.1
123         $(INSTALL) -m 644 scp.1 $(mandir)/man1/scp.1
124         $(INSTALL) -m 644 ssh-add.1 $(mandir)/man1/ssh-add.1
125         $(INSTALL) -m 644 ssh-agent.1 $(mandir)/man1/ssh-agent.1
126         $(INSTALL) -m 644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
127         $(INSTALL) -m 644 sshd.8 $(mandir)/man8/sshd.8
128         -rm -f $(bindir)/slogin
129         ln -s ssh $(bindir)/slogin
130         -rm -f $(mandir)/man1/slogin.1
131         ln -s ssh.1 $(mandir)/man1/slogin.1
132
133         if [ ! -z "@GNOME_ASKPASS@" ] ; then \
134                 $(INSTALL) -d $(libexecdir) ; \
135                 $(INSTALL) -d $(libexecdir)/ssh ; \
136                 $(INSTALL) -s @GNOME_ASKPASS@ ${ASKPASS_LOCATION} ; \
137         fi
138
139         if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \
140                 $(INSTALL) -d $(sysconfdir); \
141                 $(INSTALL) -m 644 ssh_config $(sysconfdir)/ssh_config; \
142                 $(INSTALL) -m 644 sshd_config $(sysconfdir)/sshd_config; \
143         fi
144
145 uninstallall:   uninstall
146         -rm -f $(sysconfdir)/ssh_config
147         -rm -f $(sysconfdir)/sshd_config
148         -rmdir $(sysconfdir)
149         -rmdir $(bindir)
150         -rmdir $(sbindir)
151         -rmdir $(mandir)/man1
152         -rmdir $(mandir)/man8
153         -rmdir $(mandir)
154         -rmdir $(libexecdir)
155
156 uninstall: 
157         -rm -f $(bindir)/ssh
158         -rm -f $(bindir)/scp
159         -rm -f $(bindir)/ssh-add
160         -rm -f $(bindir)/ssh-agent
161         -rm -f $(bindir)/ssh-keygen
162         -rm -f $(sbindir)/sshd
163         -rm -f $(mandir)/man1/ssh.1
164         -rm -f $(mandir)/man1/scp.1
165         -rm -f $(mandir)/man1/ssh-add.1
166         -rm -f $(mandir)/man1/ssh-agent.1
167         -rm -f $(mandir)/man1/ssh-keygen.1
168         -rm -f $(mandir)/man8/sshd.8
169         -rm -f $(bindir)/slogin
170         -rm -f $(mandir)/man1/slogin.1
171         -rm -f ${ASKPASS_PROGRAM}
172         -rmdir $(libexecdir)/ssh ;
173
174 preformat:
175         -rm -f catman
176         -mkdir catman
177         for x in $(MANPAGES) ; do man ./$${x}.in > catman/$${x}.in ; done
This page took 0.062619 seconds and 5 git commands to generate.