added 'clean' targets for mingw32 and netware.

This commit is contained in:
Gunter Knauf 2004-06-22 18:26:23 +00:00
parent a20eb6df1b
commit 450c178d77
1 changed files with 8 additions and 0 deletions

View File

@ -41,6 +41,10 @@ mingw32-ssl:
cd lib & make -f Makefile.m32 SSL=1 ZLIB=1
cd src & make -f Makefile.m32 SSL=1 ZLIB=1
mingw32-clean:
cd lib & make -f Makefile.m32 clean
cd src & make -f Makefile.m32 clean
vc:
cd lib
nmake /f Makefile.vc6 cfg=release
@ -89,6 +93,10 @@ netware-ssl:
$(MAKE) -C lib -f Makefile.netware SSL=1
$(MAKE) -C src -f Makefile.netware SSL=1
netware-clean:
$(MAKE) -C lib -f Makefile.netware clean
$(MAKE) -C src -f Makefile.netware clean
unix: all
unix-ssl: ssl