diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-09 10:16:54 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-09 10:16:54 +1100 |
commit | bf1c9b2012fadab02392126bece5d21e9ddffda6 (patch) | |
tree | 371e5f27669fa28773e2b2bb008a81a03715cf2e /Makefile.in | |
parent | fce1648681a20b99f569d4bfd9335bc4a956b119 (diff) |
- Import of patch from Ben Taylor <bent@clark.net>:
- Improved PAM support
- "uninstall" rule for Makefile
- utmpx support
- Should fix PAM problems on Solaris
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 80b0a6d42..232f8e024 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -103,6 +103,36 @@ install: all | |||
103 | $(INSTALL) -m644 sshd_config $(sysconfdir)/sshd_config; \ | 103 | $(INSTALL) -m644 sshd_config $(sysconfdir)/sshd_config; \ |
104 | fi | 104 | fi |
105 | 105 | ||
106 | uninstallall: uninstall | ||
107 | -rm -f $(sysconfdir)/ssh_config | ||
108 | -rm -f $(sysconfdir)/sshd_config | ||
109 | -rmdir $(sysconfdir) | ||
110 | -rmdir $(bindir) | ||
111 | -rmdir $(sbindir) | ||
112 | -rmdir $(mandir)/man1 | ||
113 | -rmdir $(mandir)/man8 | ||
114 | -rmdir $(mandir) | ||
115 | -rmdir $(libexecdir) | ||
116 | |||
117 | uninstall: | ||
118 | -rm -f $(bindir)/ssh | ||
119 | -rm -f $(bindir)/scp | ||
120 | -rm -f $(bindir)/ssh-add | ||
121 | -rm -f $(bindir)/ssh-agent | ||
122 | -rm -f $(bindir)/ssh-keygen | ||
123 | -rm -f $(sbindir)/sshd | ||
124 | -rm -f $(mandir)/man1/ssh.1 | ||
125 | -rm -f $(mandir)/man1/scp.1 | ||
126 | -rm -f $(mandir)/man1/ssh-add.1 | ||
127 | -rm -f $(mandir)/man1/ssh-agent.1 | ||
128 | -rm -f $(mandir)/man1/ssh-keygen.1 | ||
129 | -rm -f $(mandir)/man8/sshd.8 | ||
130 | -rm -f $(bindir)/slogin | ||
131 | -rm -f $(mandir)/man1/slogin.1 | ||
132 | -rm -f $(mandir)/man1/slogin.1 | ||
133 | -rm -f ${ASKPASS_PROGRAM} | ||
134 | -rmdir $(libexecdir)/ssh ; | ||
135 | |||
106 | distclean: clean | 136 | distclean: clean |
107 | rm -f Makefile config.h core *~ | 137 | rm -f Makefile config.h core *~ |
108 | 138 | ||