blob: 7148c50cd2947274d76b02cf712c50b0141b6eee [file] [log] [blame]
Damien Miller7f6ea021999-10-28 13:25:17 +10001prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
Damien Millere2324551999-11-19 17:18:57 +11005libexecdir=@libexecdir@
Damien Miller94388161999-10-29 09:57:31 +10006mandir=@mandir@
Damien Miller296a5461999-11-13 10:48:51 +11007sysconfdir=@sysconfdir@
Damien Miller7f6ea021999-10-28 13:25:17 +10008
Damien Millerc7b38ce1999-11-09 10:28:04 +11009SSH_PROGRAM=@bindir@/ssh
Damien Miller18ac1711999-11-19 12:43:19 +110010ASKPASS_PROGRAM=@libexecdir@/ssh/ssh-askpass
Damien Millerc7b38ce1999-11-09 10:28:04 +110011
Damien Miller7f6ea021999-10-28 13:25:17 +100012CC=@CC@
Damien Miller3bc14dd1999-12-07 14:54:53 +110013PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
Damien Millerc7b38ce1999-11-09 10:28:04 +110014CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
Damien Millere0d444c1999-11-09 14:23:45 +110015EXTRA_TARGETS=@GNOME_ASKPASS@
16TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
Damien Millerd3dcfaf1999-11-09 13:52:33 +110017LIBS=@LIBS@
Damien Millerd7f66151999-12-09 10:48:58 +110018LIBWRAP=@LIBWRAP@
Damien Miller7f6ea021999-10-28 13:25:17 +100019AR=@AR@
20RANLIB=@RANLIB@
Damien Millerd8087f61999-11-25 12:31:26 +110021INSTALL=@INSTALL@
22LFLAGS=@LDFLAGS@
Damien Miller7f6ea021999-10-28 13:25:17 +100023
Damien Millerd3dcfaf1999-11-09 13:52:33 +110024GNOME_CFLAGS=`gnome-config --cflags gnome gnomeui`
25GNOME_LIBS=`gnome-config --libs gnome gnomeui`
26
Damien Miller037a0dc1999-12-07 15:38:31 +110027OBJS= atomicio.o authfd.o authfile.o auth-passwd.o auth-rhosts.o \
28 auth-rh-rsa.o auth-rsa.o auth-skey.o bsd-daemon.o bsd-login.o \
29 bsd-mktemp.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o bufaux.o \
30 buffer.o canohost.o channels.o cipher.o clientloop.o compress.o \
31 crc32.o deattack.o helper.o helper.o hostfile.o log-client.o \
32 login.o log-server.o match.o md5crypt.o mpaux.o packet.o pty.o \
33 readconf.o readpass.o rsa.o servconf.o serverloop.o \
34 sshconnect.o tildexpand.o ttymodes.o uidswap.o xmalloc.o
Damien Miller7f6ea021999-10-28 13:25:17 +100035all: $(OBJS) $(TARGETS)
36
Damien Miller037a0dc1999-12-07 15:38:31 +110037libssh.a: 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 readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o xmalloc.o
Damien Miller7f6ea021999-10-28 13:25:17 +100043 $(AR) rv $@ $^
44 $(RANLIB) $@
45
Damien Millerd3dcfaf1999-11-09 13:52:33 +110046ssh: ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a
Damien Miller7f6ea021999-10-28 13:25:17 +100047 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
48
Damien Miller037a0dc1999-12-07 15:38:31 +110049sshd: sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \
50 pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o \
51 md5crypt.o libssh.a
Damien Millerd7f66151999-12-09 10:48:58 +110052 $(CC) -o $@ $^ $(LFLAGS) $(LIBS) $(LIBWRAP)
Damien Miller7f6ea021999-10-28 13:25:17 +100053
Damien Millerd3dcfaf1999-11-09 13:52:33 +110054scp: scp.o libssh.a
Damien Miller7f6ea021999-10-28 13:25:17 +100055 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
56
Damien Millerd3dcfaf1999-11-09 13:52:33 +110057ssh-add: ssh-add.o log-client.o libssh.a
Damien Miller7f6ea021999-10-28 13:25:17 +100058 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
59
Damien Millerd3dcfaf1999-11-09 13:52:33 +110060ssh-agent: ssh-agent.o log-client.o libssh.a
Damien Miller7f6ea021999-10-28 13:25:17 +100061 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
62
Damien Millerd3dcfaf1999-11-09 13:52:33 +110063ssh-keygen: ssh-keygen.o log-client.o libssh.a
Damien Miller7f6ea021999-10-28 13:25:17 +100064 $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
65
Damien Millerd3dcfaf1999-11-09 13:52:33 +110066gnome-ssh-askpass: gnome-ssh-askpass.c
67 $(CC) $(CFLAGS) $(GNOME_CFLAGS) -o $@ gnome-ssh-askpass.c $(GNOME_LIBS)
68
Damien Miller7f6ea021999-10-28 13:25:17 +100069clean:
Damien Miller3c5cb381999-10-29 12:06:53 +100070 rm -f *.o core $(TARGETS) config.status config.cache config.log
Damien Miller356a0b01999-11-08 15:30:59 +110071
Damien Millercdb8b1d1999-11-09 14:31:49 +110072install: all
Damien Millerd8087f61999-11-25 12:31:26 +110073 $(INSTALL) -d $(bindir)
74 $(INSTALL) -d $(sbindir)
75 $(INSTALL) -d $(mandir)
76 $(INSTALL) -d $(mandir)/man1
77 $(INSTALL) -d $(mandir)/man8
Damien Millerf958fab1999-11-25 13:36:42 +110078 $(INSTALL) -s ssh $(bindir)/ssh
79 $(INSTALL) -s scp $(bindir)/scp
80 $(INSTALL) -s ssh-add $(bindir)/ssh-add
81 $(INSTALL) -s ssh-agent $(bindir)/ssh-agent
82 $(INSTALL) -s ssh-keygen $(bindir)/ssh-keygen
83 $(INSTALL) -s sshd $(sbindir)/sshd
84 $(INSTALL) -m644 ssh.1 $(mandir)/man1/ssh.1
85 $(INSTALL) -m644 scp.1 $(mandir)/man1/scp.1
86 $(INSTALL) -m644 ssh-add.1 $(mandir)/man1/ssh-add.1
87 $(INSTALL) -m644 ssh-agent.1 $(mandir)/man1/ssh-agent.1
88 $(INSTALL) -m644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
89 $(INSTALL) -m644 sshd.8 $(mandir)/man8/sshd.8
Damien Miller1f7833d1999-11-30 09:47:52 +110090 -rm -f $(bindir)/slogin
91 ln -s ssh $(bindir)/slogin
92 -rm -f $(mandir)/man1/slogin.1
93 ln -s ssh.1 $(mandir)/man1/slogin.1
Damien Miller3d1b22c1999-11-12 15:46:08 +110094
Damien Miller98ac0071999-11-25 13:19:55 +110095 $(INSTALL) -d $(libexecdir) ;
96 $(INSTALL) -d $(libexecdir)/ssh ;
Damien Millerf066d6e1999-11-25 13:40:22 +110097 if [ ! -z "@GNOME_ASKPASS@" ] ; then \
Damien Millerf958fab1999-11-25 13:36:42 +110098 $(INSTALL) -s @GNOME_ASKPASS@ ${ASKPASS_PROGRAM} ; \
Damien Miller3d1b22c1999-11-12 15:46:08 +110099 fi
Damien Miller7f6ea021999-10-28 13:25:17 +1000100
Damien Miller296a5461999-11-13 10:48:51 +1100101 if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \
Damien Millerd8087f61999-11-25 12:31:26 +1100102 $(INSTALL) -d $(sysconfdir); \
103 $(INSTALL) -m644 ssh_config $(sysconfdir)/ssh_config; \
104 $(INSTALL) -m644 sshd_config $(sysconfdir)/sshd_config; \
Damien Miller296a5461999-11-13 10:48:51 +1100105 fi
106
Damien Millerbf1c9b21999-12-09 10:16:54 +1100107uninstallall: uninstall
108 -rm -f $(sysconfdir)/ssh_config
109 -rm -f $(sysconfdir)/sshd_config
110 -rmdir $(sysconfdir)
111 -rmdir $(bindir)
112 -rmdir $(sbindir)
113 -rmdir $(mandir)/man1
114 -rmdir $(mandir)/man8
115 -rmdir $(mandir)
116 -rmdir $(libexecdir)
117
118uninstall:
119 -rm -f $(bindir)/ssh
120 -rm -f $(bindir)/scp
121 -rm -f $(bindir)/ssh-add
122 -rm -f $(bindir)/ssh-agent
123 -rm -f $(bindir)/ssh-keygen
124 -rm -f $(sbindir)/sshd
125 -rm -f $(mandir)/man1/ssh.1
126 -rm -f $(mandir)/man1/scp.1
127 -rm -f $(mandir)/man1/ssh-add.1
128 -rm -f $(mandir)/man1/ssh-agent.1
129 -rm -f $(mandir)/man1/ssh-keygen.1
130 -rm -f $(mandir)/man8/sshd.8
131 -rm -f $(bindir)/slogin
132 -rm -f $(mandir)/man1/slogin.1
133 -rm -f $(mandir)/man1/slogin.1
134 -rm -f ${ASKPASS_PROGRAM}
135 -rmdir $(libexecdir)/ssh ;
136
Damien Miller7f6ea021999-10-28 13:25:17 +1000137distclean: clean
Damien Miller356a0b01999-11-08 15:30:59 +1100138 rm -f Makefile config.h core *~
Damien Miller7f6ea021999-10-28 13:25:17 +1000139
140mrproper: distclean
Damien Miller356a0b01999-11-08 15:30:59 +1100141
142veryclean: distclean
Damien Millerc7b38ce1999-11-09 10:28:04 +1100143 rm -f configure config.h.in
144