]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Try to build tinytest.obj from the right sources
authorNick Mathewson <nickm@torproject.org>
Tue, 18 Dec 2012 18:58:11 +0000 (13:58 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 17 Jan 2013 03:29:39 +0000 (22:29 -0500)
src/test/Makefile.nmake

index 6d6af96af9a5049837e6b26e18746e13a202d6b3..7ba8f7ee81cff9c891e3084d90afd7cedaad763b 100644 (file)
@@ -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$@