aboutsummaryrefslogtreecommitdiff
path: root/src/test/Makefile.nmake
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-18 13:58:11 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-16 22:29:39 -0500
commitaa8f30a4874852f232826de0a60a3e74e16c21e6 (patch)
tree6cdd694e19b19b9b8e0c098507693e41b45bb0cb /src/test/Makefile.nmake
parentca3bc8973b406cb57bc64bc71bf1adfa27f3c5a9 (diff)
downloadtor-aa8f30a4874852f232826de0a60a3e74e16c21e6.tar
tor-aa8f30a4874852f232826de0a60a3e74e16c21e6.tar.gz
Try to build tinytest.obj from the right sources
Diffstat (limited to 'src/test/Makefile.nmake')
-rw-r--r--src/test/Makefile.nmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/Makefile.nmake b/src/test/Makefile.nmake
index 6d6af96af..7ba8f7ee8 100644
--- a/src/test/Makefile.nmake
+++ b/src/test/Makefile.nmake
@@ -18,6 +18,9 @@ TEST_OBJECTS = test.obj test_addr.obj test_containers.obj \
tinytest.obj: ..\ext\tinytest.c
$(CC) $(CFLAGS) /D snprintf=_snprintf /c ..\ext\tinytest.c
+tinytest.obj: ..\ext\tinytest.c
+ $(CC) $(CFLAGS) /c ..\exe\tinytest.c
+
test.exe: $(TEST_OBJECTS)
$(CC) $(CFLAGS) $(LIBS) ..\common\*.lib $(TEST_OBJECTS) /Fe$@