summaryrefslogtreecommitdiffstats
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 9bf8a425..f484dc3a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.189 2001/10/22 00:53:59 tim Exp $
+# $Id: Makefile.in,v 1.190 2001/11/11 23:34:23 djm Exp $
prefix=@prefix@
exec_prefix=@exec_prefix@
@@ -87,7 +87,7 @@ $(SSHDOBJS): config.h
LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
$(LIBCOMPAT): always
- (cd openbsd-compat; $(MAKE))
+ (cd openbsd-compat && $(MAKE))
always:
libssh.a: $(LIBSSH_OBJS)
@@ -144,23 +144,23 @@ $(CONFIGFILES): $(CONFIGFILES_IN)
clean:
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
rm -f *.out core
- (cd openbsd-compat; $(MAKE) clean)
+ (cd openbsd-compat && $(MAKE) clean)
distclean:
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
rm -f *.out core
rm -f Makefile config.h config.status ssh_prng_cmds *~
rm -rf autom4te.cache
- (cd openbsd-compat; $(MAKE) distclean)
- (cd scard; $(MAKE) distclean)
+ (cd openbsd-compat && $(MAKE) distclean)
+ (cd scard && $(MAKE) distclean)
veryclean:
rm -f configure config.h.in *.0
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
rm -f *.out core
rm -f Makefile config.h config.status ssh_prng_cmds *~
- (cd openbsd-compat; $(MAKE) distclean)
- (cd scard; $(MAKE) distclean)
+ (cd openbsd-compat && $(MAKE) distclean)
+ (cd scard && $(MAKE) distclean)
mrproper: distclean
@@ -174,13 +174,13 @@ catman-do:
distprep: catman-do
autoreconf
- (cd scard ; $(MAKE) -f Makefile.in distprep)
+ (cd scard && $(MAKE) -f Makefile.in distprep)
install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
scard-install:
- (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install)
+ (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
install-files: scard-install
$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)