diff options
author | Alexander Færøy <ahf@torproject.org> | 2018-11-26 05:34:30 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-17 16:39:28 -0500 |
commit | f7d13425fc738d7d56d5582b9be8510ac236c076 (patch) | |
tree | 55852691651993b2c1d12234e290dd0f2bbed516 /src/test/Makefile.nmake | |
parent | 289ed0849d9b473cd0fbafada30c03638d73e541 (diff) | |
download | tor-f7d13425fc738d7d56d5582b9be8510ac236c076.tar.gz tor-f7d13425fc738d7d56d5582b9be8510ac236c076.zip |
Delete old process_handle_t code.
This patch removes the old process_handle_t code. Everything should by
now be using the process_t interface.
See: https://bugs.torproject.org/28179
Diffstat (limited to 'src/test/Makefile.nmake')
-rw-r--r-- | src/test/Makefile.nmake | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/test/Makefile.nmake b/src/test/Makefile.nmake index cfbe281b94..aa16a22b52 100644 --- a/src/test/Makefile.nmake +++ b/src/test/Makefile.nmake @@ -1,4 +1,4 @@ -all: test.exe test-child.exe bench.exe +all: test.exe bench.exe CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common /I ..\or \ /I ..\ext @@ -30,8 +30,5 @@ test.exe: $(TEST_OBJECTS) bench.exe: bench.obj $(CC) $(CFLAGS) bench.obj $(LIBS) ..\common\*.lib /Fe$@ -test-child.exe: test-child.obj - $(CC) $(CFLAGS) test-child.obj /Fe$@ - clean: - del *.obj *.lib test.exe bench.exe test-child.exe + del *.obj *.lib test.exe bench.exe |