diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-09-09 10:27:41 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-09 10:27:41 -0400 |
commit | 29979082286cc8fa4dadf4e1fcbe85a1aa58d757 (patch) | |
tree | d2b7ff746cd90f4cba0664bc446e3116d6d21ad6 /src/ext | |
parent | ad0ae89b3c872ee89f4bd6096e650d4e2c855330 (diff) | |
parent | 8391c96091e8e86c43954302df0b188ec1e5490d (diff) | |
download | tor-29979082286cc8fa4dadf4e1fcbe85a1aa58d757.tar.gz tor-29979082286cc8fa4dadf4e1fcbe85a1aa58d757.zip |
Merge remote-tracking branch 'origin/maint-0.2.5'
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Makefile.nmake | 12 |
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 |