aboutsummaryrefslogtreecommitdiff
path: root/src/or/Makefile.nmake
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-18 13:41:11 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-16 22:29:39 -0500
commitca3bc8973b406cb57bc64bc71bf1adfa27f3c5a9 (patch)
tree0dbb46ebdb989730685a72797861adc9f558931c /src/or/Makefile.nmake
parent9ddcd961490dff3b47d2b863b25cd85e0a4d8fea (diff)
downloadtor-ca3bc8973b406cb57bc64bc71bf1adfa27f3c5a9.tar.gz
tor-ca3bc8973b406cb57bc64bc71bf1adfa27f3c5a9.zip
use the /Fe flag with msvc
Fixes 7309
Diffstat (limited to 'src/or/Makefile.nmake')
-rw-r--r--src/or/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/Makefile.nmake b/src/or/Makefile.nmake
index 568c7455eb..bf67769b52 100644
--- a/src/or/Makefile.nmake
+++ b/src/or/Makefile.nmake
@@ -61,10 +61,10 @@ LIBTOR_OBJECTS = \
transports.obj
libtor.lib: $(LIBTOR_OBJECTS)
- lib $(LIBTOR_OBJECTS) /out:libtor.lib
+ lib $(LIBTOR_OBJECTS) /out:$@
tor.exe: libtor.lib tor_main.obj
- $(CC) $(CFLAGS) $(LIBS) libtor.lib ..\common\*.lib tor_main.obj
+ $(CC) $(CFLAGS) $(LIBS) libtor.lib ..\common\*.lib tor_main.obj /Fe$@
clean:
del $(LIBTOR_OBJECTS) *.lib tor.exe