Add clean target and test subdir to makefile.nmake

This commit is contained in:
Nick Mathewson 2012-12-18 13:24:19 -05:00
parent fb497dfe9e
commit ce2513abb8
2 changed files with 13 additions and 0 deletions

View File

@ -3,3 +3,13 @@ all:
$(MAKE) /F Makefile.nmake
cd ../../src/or
$(MAKE) /F Makefile.nmake
cd ../../src/test
$(MAKE) /F Makefile.nmake
clean:
cd src/common
$(MAKE) /F Makefile.nmake clean
cd ../../src/or
$(MAKE) /F Makefile.nmake clean
cd ../../src/test
$(MAKE) /F Makefile.nmake clean

View File

@ -18,3 +18,6 @@ libor-crypto.lib: $(LIBOR_CRYPTO_OBJECTS)
libor-event.lib: $(LIBOR_EVENT_OBJECTS)
lib $(LIBOR_EVENT_OBJECTS) /out:libor-event.lib
clean:
del *.obj *.lib libor*.lib