]> andersk Git - openssh.git/blob - Makefile.in
- Run fixpaths before install. (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
9 srcdir = @srcdir@
10 top_srcdir = @top_srcdir@
11 VPATH=@srcdir@
12
13 SSH_PROGRAM=@bindir@/ssh
14 ASKPASS_LOCATION=@libexecdir@/ssh
15 ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
16 FIXPATHS=@top_srcdir@/fixpaths
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 TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
23 LIBS=@LIBS@
24 LIBWRAP=@LIBWRAP@
25 AR=@AR@
26 RANLIB=@RANLIB@
27 INSTALL=@INSTALL@
28 PERL=@PERL@
29 LDFLAGS=-L. @LDFLAGS@
30
31 GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
32 GNOME_LIBS=`gnome-config --libs gnome gnomeui`
33
34 OBJS= atomicio.o authfd.o authfile.o auth-krb4.o auth-passwd.o auth-pam.o \
35   auth-rhosts.o auth-rh-rsa.o auth-rsa.o auth-skey.o bsd-daemon.o \
36   bsd-login.o bsd-misc.o bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o \
37   bsd-strlcpy.o bufaux.o buffer.o canohost.o channels.o cipher.o \
38   clientloop.o compress.o crc32.o deattack.o hostfile.o \
39   log-client.o login.o log-server.o match.o md5crypt.o mpaux.o \
40   packet.o pty.o radix.o readconf.o readpass.o rsa.o servconf.o \
41   serverloop.o sshconnect.o tildexpand.o ttymodes.o uidswap.o \
42   xmalloc.o 
43
44 LIBOBJS= atomicio.o authfd.o authfile.o bsd-daemon.o bsd-misc.o \
45   bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o \
46   buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o \
47   deattack.o fingerprint.o hostfile.o log.o match.o mpaux.o nchan.o \
48   packet.o radix.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o \
49   xmalloc.o 
50
51 SSHOBJS= ssh.o sshconnect.o log-client.o readconf.o clientloop.o
52
53 SSHDOBJS= sshd.o auth-rhosts.o auth-krb4.o auth-pam.o auth-passwd.o \
54   auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o \
55   serverloop.o bsd-login.o md5crypt.o
56
57 all: $(OBJS) $(TARGETS) manpages
58
59 $(OBJS): config.h
60
61 $(LIBOBJS): config.h
62
63 libssh.a: $(LIBOBJS)
64         $(AR) rv $@ $(LIBOBJS)
65         $(RANLIB) $@
66
67 ssh: $(SSHOBJS) libssh.a
68         $(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
69
70 sshd:   $(SSHDOBJS) libssh.a
71         $(CC) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS) $(LIBWRAP)
72
73 scp:    scp.o libssh.a
74         $(CC) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS) 
75
76 ssh-add: ssh-add.o log-client.o libssh.a
77         $(CC) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
78
79 ssh-agent: ssh-agent.o log-client.o libssh.a
80         $(CC) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
81
82 ssh-keygen: ssh-keygen.o log-client.o libssh.a
83         $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS) 
84
85 gnome-ssh-askpass: gnome-ssh-askpass.c
86         $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
87
88 clean:
89         rm -f *.o $(TARGETS) config.status config.cache config.log core \
90                 *.1 *.8 sshd_config ssh_config
91
92 manpages:
93         $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.[18].in $(srcdir)/ssh*_config.in
94
95 install: manpages all
96         $(INSTALL) -d $(bindir)
97         $(INSTALL) -d $(sbindir)
98         $(INSTALL) -d $(mandir)
99         $(INSTALL) -d $(mandir)/man1
100         $(INSTALL) -d $(mandir)/man8
101         $(INSTALL) -s ssh $(bindir)/ssh
102         $(INSTALL) -s scp $(bindir)/scp
103         $(INSTALL) -s ssh-add $(bindir)/ssh-add
104         $(INSTALL) -s ssh-agent $(bindir)/ssh-agent
105         $(INSTALL) -s ssh-keygen $(bindir)/ssh-keygen
106         $(INSTALL) -s sshd $(sbindir)/sshd
107         $(INSTALL) -m 644 ssh.1 $(mandir)/man1/ssh.1
108         $(INSTALL) -m 644 scp.1 $(mandir)/man1/scp.1
109         $(INSTALL) -m 644 ssh-add.1 $(mandir)/man1/ssh-add.1
110         $(INSTALL) -m 644 ssh-agent.1 $(mandir)/man1/ssh-agent.1
111         $(INSTALL) -m 644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
112         $(INSTALL) -m 644 sshd.8 $(mandir)/man8/sshd.8
113         -rm -f $(bindir)/slogin
114         ln -s ssh $(bindir)/slogin
115         -rm -f $(mandir)/man1/slogin.1
116         ln -s ssh.1 $(mandir)/man1/slogin.1
117
118         if [ ! -z "@GNOME_ASKPASS@" ] ; then \
119                 $(INSTALL) -d $(libexecdir) ; \
120                 $(INSTALL) -d $(libexecdir)/ssh ; \
121                 $(INSTALL) -s @GNOME_ASKPASS@ ${ASKPASS_LOCATION} ; \
122         fi
123
124         if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \
125                 $(INSTALL) -d $(sysconfdir); \
126                 $(INSTALL) -m 644 ssh_config $(sysconfdir)/ssh_config; \
127                 $(INSTALL) -m 644 sshd_config $(sysconfdir)/sshd_config; \
128         fi
129
130 uninstallall:   uninstall
131         -rm -f $(sysconfdir)/ssh_config
132         -rm -f $(sysconfdir)/sshd_config
133         -rmdir $(sysconfdir)
134         -rmdir $(bindir)
135         -rmdir $(sbindir)
136         -rmdir $(mandir)/man1
137         -rmdir $(mandir)/man8
138         -rmdir $(mandir)
139         -rmdir $(libexecdir)
140
141 uninstall: 
142         -rm -f $(bindir)/ssh
143         -rm -f $(bindir)/scp
144         -rm -f $(bindir)/ssh-add
145         -rm -f $(bindir)/ssh-agent
146         -rm -f $(bindir)/ssh-keygen
147         -rm -f $(sbindir)/sshd
148         -rm -f $(mandir)/man1/ssh.1
149         -rm -f $(mandir)/man1/scp.1
150         -rm -f $(mandir)/man1/ssh-add.1
151         -rm -f $(mandir)/man1/ssh-agent.1
152         -rm -f $(mandir)/man1/ssh-keygen.1
153         -rm -f $(mandir)/man8/sshd.8
154         -rm -f $(bindir)/slogin
155         -rm -f $(mandir)/man1/slogin.1
156         -rm -f ${ASKPASS_PROGRAM}
157         -rmdir $(libexecdir)/ssh ;
158
159 distclean: clean
160         rm -f Makefile config.h core *~
161
162 mrproper: distclean
163
164 veryclean: distclean
165         rm -f configure config.h.in
166
This page took 0.050817 seconds and 5 git commands to generate.