diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2022-04-27 01:27:39 -0400 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2022-04-27 23:09:44 -0400 |
commit | 65ea7eed1f32bcb99445ffb45e73561ba735ead8 (patch) | |
tree | 18f87355f037c12f32560f5932be0da665c52511 /src/ext | |
parent | 4259bc36af4aea0184488cbef00cef5dd1002044 (diff) | |
download | tor-65ea7eed1f32bcb99445ffb45e73561ba735ead8.tar.gz tor-65ea7eed1f32bcb99445ffb45e73561ba735ead8.zip |
Remove broken MSVC support
MSVC compilation has been broken since at least 1e417b727502 ("All remaining
files in src/common belong to the event loop.") deleted
src/common/Makefile.nmake in 2018.
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Makefile.nmake | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ext/Makefile.nmake b/src/ext/Makefile.nmake deleted file mode 100644 index d02d03bf41..0000000000 --- a/src/ext/Makefile.nmake +++ /dev/null @@ -1,12 +0,0 @@ -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 |