2012-12-18 19:38:01 +01:00
|
|
|
all: test.exe test-child.exe bench.exe
|
2012-05-16 16:08:24 +02:00
|
|
|
|
2012-12-18 19:16:48 +01:00
|
|
|
CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common /I ..\or \
|
|
|
|
/I ..\ext
|
2012-05-16 16:08:24 +02:00
|
|
|
|
|
|
|
LIBS = ..\..\..\build-alpha\lib\libevent.lib \
|
|
|
|
..\..\..\build-alpha\lib\libcrypto.lib \
|
|
|
|
..\..\..\build-alpha\lib\libssl.lib \
|
|
|
|
..\..\..\build-alpha\lib\libz.lib \
|
|
|
|
..\or\libtor.lib \
|
2013-01-17 16:01:22 +01:00
|
|
|
ws2_32.lib advapi32.lib shell32.lib \
|
|
|
|
crypt32.lib gdi32.lib user32.lib
|
2012-05-16 16:08:24 +02:00
|
|
|
|
|
|
|
TEST_OBJECTS = test.obj test_addr.obj test_containers.obj \
|
2013-05-31 15:51:25 +02:00
|
|
|
test_controller_events.ogj test_crypto.obj test_data.obj test_dir.obj \
|
|
|
|
test_microdesc.obj test_pt.obj test_util.obj test_config.obj \
|
2013-12-18 07:40:05 +01:00
|
|
|
test_cell_formats.obj test_replay.obj test_introduce.obj tinytest.obj \
|
|
|
|
test_hs.obj
|
2012-12-18 19:41:11 +01:00
|
|
|
|
|
|
|
tinytest.obj: ..\ext\tinytest.c
|
|
|
|
$(CC) $(CFLAGS) /D snprintf=_snprintf /c ..\ext\tinytest.c
|
2012-05-16 16:08:24 +02:00
|
|
|
|
|
|
|
test.exe: $(TEST_OBJECTS)
|
2012-12-18 19:41:11 +01:00
|
|
|
$(CC) $(CFLAGS) $(LIBS) ..\common\*.lib $(TEST_OBJECTS) /Fe$@
|
2012-05-16 16:08:24 +02:00
|
|
|
|
2012-12-18 19:38:01 +01:00
|
|
|
bench.exe: bench.obj
|
2012-12-18 19:41:11 +01:00
|
|
|
$(CC) $(CFLAGS) bench.obj $(LIBS) ..\common\*.lib /Fe$@
|
2012-12-18 19:38:01 +01:00
|
|
|
|
|
|
|
test-child.exe: test-child.obj
|
2012-12-18 19:41:11 +01:00
|
|
|
$(CC) $(CFLAGS) test-child.obj /Fe$@
|
2012-12-18 19:38:01 +01:00
|
|
|
|
2012-05-16 16:08:24 +02:00
|
|
|
clean:
|
2012-12-18 19:38:01 +01:00
|
|
|
del *.obj *.lib test.exe bench.exe test-child.exe
|