From: Nick Mathewson Date: Tue, 18 Dec 2012 18:58:11 +0000 (-0500) Subject: Try to build tinytest.obj from the right sources X-Git-Tag: tor-0.2.4.10-alpha~31^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa8f30a4874852f232826de0a60a3e74e16c21e6;p=thirdparty%2Ftor.git Try to build tinytest.obj from the right sources --- diff --git a/src/test/Makefile.nmake b/src/test/Makefile.nmake index 6d6af96af9..7ba8f7ee81 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$@