]> andersk Git - openssh.git/blobdiff - Makefile.in
- (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
[openssh.git] / Makefile.in
index d1234c563081591719f18962c252f6443d14f257..d20bfca54efa0b60b0ef483b0827bd5d3ce96378 100644 (file)
@@ -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)
This page took 0.033078 seconds and 4 git commands to generate.