]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add missing targets to src/test/Makefile.nmake. Fix for 7316
authorNick Mathewson <nickm@torproject.org>
Tue, 18 Dec 2012 18:38:01 +0000 (13:38 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 17 Jan 2013 03:29:39 +0000 (22:29 -0500)
src/test/Makefile.nmake

index 9580e39f4d93c471c64ea659ffc0d6b21f10ee50..1b0660cb3b9497a85940c9e4ada775d85ad8d57d 100644 (file)
@@ -1,4 +1,4 @@
-all: test.exe
+all: test.exe test-child.exe bench.exe
 
 CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common /I ..\or \
     /I ..\ext
@@ -17,5 +17,11 @@ TEST_OBJECTS = test.obj test_addr.obj test_containers.obj \
 test.exe: $(TEST_OBJECTS)
        $(CC) $(CFLAGS) $(LIBS) ..\common\*.lib $(TEST_OBJECTS)
 
+bench.exe: bench.obj
+       $(CC) $(CFLAGS) bench.obj $(LIBS) ..\common\*.lib
+
+test-child.exe: test-child.obj
+       $(CC) $(CFLAGS) test-child.obj
+
 clean:
-       del $(TEST_OBJECTS) *.lib test.exe
+       del *.obj *.lib test.exe bench.exe test-child.exe