From: Gisle Vanem Date: Sat, 13 Nov 2004 16:57:56 +0000 (+0000) Subject: MingW/djgpp: Use GNU make's internal 'cd' to avoid shell-troubles. X-Git-Tag: curl-7_12_3~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd64213c2f123ff6a2a68756741a5cc4f4f8cac3;p=thirdparty%2Fcurl.git MingW/djgpp: Use GNU make's internal 'cd' to avoid shell-troubles. --- diff --git a/Makefile.dist b/Makefile.dist index 1bd2b2db68..d633b385d0 100644 --- a/Makefile.dist +++ b/Makefile.dist @@ -54,16 +54,16 @@ borland-clean: make -f Makefile.b32 clean mingw32: - cd lib & make -f Makefile.m32 ZLIB=1 - cd src & make -f Makefile.m32 ZLIB=1 + $(MAKE) -C lib -f Makefile.m32 ZLIB=1 + $(MAKE) -C src -f Makefile.m32 ZLIB=1 mingw32-ssl: - cd lib & make -f Makefile.m32 SSL=1 ZLIB=1 - cd src & make -f Makefile.m32 SSL=1 ZLIB=1 + $(MAKE) -C lib -f Makefile.m32 SSL=1 ZLIB=1 + $(MAKE) -C src -f Makefile.m32 SSL=1 ZLIB=1 mingw32-clean: - cd lib & make -f Makefile.m32 clean - cd src & make -f Makefile.m32 clean + $(MAKE) -C lib -f Makefile.m32 clean + $(MAKE) -C src -f Makefile.m32 clean vc: cd lib @@ -102,8 +102,8 @@ vc-libcurl-ssl-dll: nmake /f Makefile.vc6 djgpp: - make -C lib -f Makefile.dj - make -C src -f Makefile.dj + $(MAKE) -C lib -f Makefile.dj + $(MAKE) -C src -f Makefile.dj cygwin: ./configure