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