Commit 450c178d authored by Guenter Knauf's avatar Guenter Knauf
Browse files

added 'clean' targets for mingw32 and netware.

parent a20eb6df
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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