aboutsummaryrefslogtreecommitdiff
path: root/src/test/Makefile.nmake
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-18 13:38:01 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-16 22:29:39 -0500
commit9ddcd961490dff3b47d2b863b25cd85e0a4d8fea (patch)
treee3b482cdc9f61b2b3d62b703a9c708e932369062 /src/test/Makefile.nmake
parent7008d4393689115f85d076a17c6a870caa7973b4 (diff)
downloadtor-9ddcd961490dff3b47d2b863b25cd85e0a4d8fea.tar
tor-9ddcd961490dff3b47d2b863b25cd85e0a4d8fea.tar.gz
Add missing targets to src/test/Makefile.nmake. Fix for 7316
Diffstat (limited to 'src/test/Makefile.nmake')
-rw-r--r--src/test/Makefile.nmake10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/test/Makefile.nmake b/src/test/Makefile.nmake
index 9580e39f4..1b0660cb3 100644
--- a/src/test/Makefile.nmake
+++ b/src/test/Makefile.nmake
@@ -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