summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 10:34:22 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 10:34:22 +1100
commitf41d618fec126ae0d8083e2cc4c2074fbf023759 (patch)
tree5a79a7dd5fb5f3fed93eec9f07f823558c7b8f2a /Makefile.in
parentde77b464c6214139ff5ef65521621d9245472c68 (diff)
- (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in
index 9bf8a425c..f484dc3a0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.189 2001/10/22 00:53:59 tim Exp $ 1# $Id: Makefile.in,v 1.190 2001/11/11 23:34:23 djm Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -87,7 +87,7 @@ $(SSHDOBJS): config.h
87 87
88LIBCOMPAT=openbsd-compat/libopenbsd-compat.a 88LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
89$(LIBCOMPAT): always 89$(LIBCOMPAT): always
90 (cd openbsd-compat; $(MAKE)) 90 (cd openbsd-compat && $(MAKE))
91always: 91always:
92 92
93libssh.a: $(LIBSSH_OBJS) 93libssh.a: $(LIBSSH_OBJS)
@@ -144,23 +144,23 @@ $(CONFIGFILES): $(CONFIGFILES_IN)
144clean: 144clean:
145 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 145 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
146 rm -f *.out core 146 rm -f *.out core
147 (cd openbsd-compat; $(MAKE) clean) 147 (cd openbsd-compat && $(MAKE) clean)
148 148
149distclean: 149distclean:
150 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 150 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
151 rm -f *.out core 151 rm -f *.out core
152 rm -f Makefile config.h config.status ssh_prng_cmds *~ 152 rm -f Makefile config.h config.status ssh_prng_cmds *~
153 rm -rf autom4te.cache 153 rm -rf autom4te.cache
154 (cd openbsd-compat; $(MAKE) distclean) 154 (cd openbsd-compat && $(MAKE) distclean)
155 (cd scard; $(MAKE) distclean) 155 (cd scard && $(MAKE) distclean)
156 156
157veryclean: 157veryclean:
158 rm -f configure config.h.in *.0 158 rm -f configure config.h.in *.0
159 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 159 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
160 rm -f *.out core 160 rm -f *.out core
161 rm -f Makefile config.h config.status ssh_prng_cmds *~ 161 rm -f Makefile config.h config.status ssh_prng_cmds *~
162 (cd openbsd-compat; $(MAKE) distclean) 162 (cd openbsd-compat && $(MAKE) distclean)
163 (cd scard; $(MAKE) distclean) 163 (cd scard && $(MAKE) distclean)
164 164
165mrproper: distclean 165mrproper: distclean
166 166
@@ -174,13 +174,13 @@ catman-do:
174 174
175distprep: catman-do 175distprep: catman-do
176 autoreconf 176 autoreconf
177 (cd scard ; $(MAKE) -f Makefile.in distprep) 177 (cd scard && $(MAKE) -f Makefile.in distprep)
178 178
179install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key 179install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
180install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files 180install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
181 181
182scard-install: 182scard-install:
183 (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install) 183 (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
184 184
185install-files: scard-install 185install-files: scard-install
186 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) 186 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)