]> andersk Git - openssh.git/blame_incremental - Makefile.in
- Run fixpaths before install. (Andre Lucas)
[openssh.git] / Makefile.in
... / ...
CommitLineData
1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
5libexecdir=@libexecdir@
6mandir=@mandir@
7sysconfdir=@sysconfdir@
8
9srcdir = @srcdir@
10top_srcdir = @top_srcdir@
11VPATH=@srcdir@
12
13SSH_PROGRAM=@bindir@/ssh
14ASKPASS_LOCATION=@libexecdir@/ssh
15ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
16FIXPATHS=@top_srcdir@/fixpaths
17
18CC=@CC@
19PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
20CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
21EXTRA_TARGETS=@GNOME_ASKPASS@
22TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
23LIBS=@LIBS@
24LIBWRAP=@LIBWRAP@
25AR=@AR@
26RANLIB=@RANLIB@
27INSTALL=@INSTALL@
28PERL=@PERL@
29LDFLAGS=-L. @LDFLAGS@
30
31GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
32GNOME_LIBS=`gnome-config --libs gnome gnomeui`
33
34OBJS= 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
44LIBOBJS= 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
51SSHOBJS= ssh.o sshconnect.o log-client.o readconf.o clientloop.o
52
53SSHDOBJS= 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
57all: $(OBJS) $(TARGETS) manpages
58
59$(OBJS): config.h
60
61$(LIBOBJS): config.h
62
63libssh.a: $(LIBOBJS)
64 $(AR) rv $@ $(LIBOBJS)
65 $(RANLIB) $@
66
67ssh: $(SSHOBJS) libssh.a
68 $(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh $(LIBS)
69
70sshd: $(SSHDOBJS) libssh.a
71 $(CC) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh $(LIBS) $(LIBWRAP)
72
73scp: scp.o libssh.a
74 $(CC) -o $@ scp.o $(LDFLAGS) -lssh $(LIBS)
75
76ssh-add: ssh-add.o log-client.o libssh.a
77 $(CC) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh $(LIBS)
78
79ssh-agent: ssh-agent.o log-client.o libssh.a
80 $(CC) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh $(LIBS)
81
82ssh-keygen: ssh-keygen.o log-client.o libssh.a
83 $(CC) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh $(LIBS)
84
85gnome-ssh-askpass: gnome-ssh-askpass.c
86 $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
87
88clean:
89 rm -f *.o $(TARGETS) config.status config.cache config.log core \
90 *.1 *.8 sshd_config ssh_config
91
92manpages:
93 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.[18].in $(srcdir)/ssh*_config.in
94
95install: 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
130uninstallall: 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
141uninstall:
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
159distclean: clean
160 rm -f Makefile config.h core *~
161
162mrproper: distclean
163
164veryclean: distclean
165 rm -f configure config.h.in
166
This page took 0.035874 seconds and 5 git commands to generate.