Skip to content

Commit

Permalink
MingW/djgpp: Use GNU make's internal 'cd' to avoid shell-troubles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gisle Vanem committed Nov 13, 2004
1 parent fc2c067 commit fd64213
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile.dist
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit fd64213

Please sign in to comment.