Makefile.nmake 987 B

12345678910111213141516171819202122232425262728293031
  1. all: test.exe test-child.exe bench.exe
  2. CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common /I ..\or \
  3. /I ..\ext
  4. LIBS = ..\..\..\build-alpha\lib\libevent.lib \
  5. ..\..\..\build-alpha\lib\libcrypto.lib \
  6. ..\..\..\build-alpha\lib\libssl.lib \
  7. ..\..\..\build-alpha\lib\libz.lib \
  8. ..\or\libtor.lib \
  9. ws2_32.lib advapi32.lib shell32.lib
  10. TEST_OBJECTS = test.obj test_addr.obj test_containers.obj \
  11. test_crypto.obj test_data.obj test_dir.obj test_microdesc.obj \
  12. test_pt.obj test_util.obj test_config.obj test_cell_formats.obj \
  13. test_replay.obj test_introduce.obj tinytest.obj
  14. tinytest.obj: ..\ext\tinytest.c
  15. $(CC) $(CFLAGS) /D snprintf=_snprintf /c ..\ext\tinytest.c
  16. test.exe: $(TEST_OBJECTS)
  17. $(CC) $(CFLAGS) $(LIBS) ..\common\*.lib $(TEST_OBJECTS) /Fe$@
  18. bench.exe: bench.obj
  19. $(CC) $(CFLAGS) bench.obj $(LIBS) ..\common\*.lib /Fe$@
  20. test-child.exe: test-child.obj
  21. $(CC) $(CFLAGS) test-child.obj /Fe$@
  22. clean:
  23. del *.obj *.lib test.exe bench.exe test-child.exe