aboutsummaryrefslogtreecommitdiff
path: root/src/ext
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-09-09 10:27:05 -0400
committerNick Mathewson <nickm@torproject.org>2014-09-09 10:27:05 -0400
commit8391c96091e8e86c43954302df0b188ec1e5490d (patch)
treee291c38c5ae4b18362868fb313d548c8daeaaefc /src/ext
parenta3c49ca79aa28d869223773eb8e8774013f3eb77 (diff)
downloadtor-8391c96091e8e86c43954302df0b188ec1e5490d.tar.gz
tor-8391c96091e8e86c43954302df0b188ec1e5490d.zip
Clean up the MVSC nmake files so they work again.
Fixes bug 13081; bugfix on 0.2.5.1-alpha. Patch from "NewEraCracker."
Diffstat (limited to 'src/ext')
-rw-r--r--src/ext/Makefile.nmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ext/Makefile.nmake b/src/ext/Makefile.nmake
new file mode 100644
index 0000000000..d02d03bf41
--- /dev/null
+++ b/src/ext/Makefile.nmake
@@ -0,0 +1,12 @@
+all: csiphash.lib
+
+CFLAGS = /O2 /MT /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common \
+ /I ..\ext
+
+CSIPHASH_OBJECTS = csiphash.obj
+
+csiphash.lib: $(CSIPHASH_OBJECTS)
+ lib $(CSIPHASH_OBJECTS) $(CURVE25519_DONNA_OBJECTS) /out:csiphash.lib
+
+clean:
+ del *.obj *.lib