makefile.msvc 371 B

1234567891011121314
  1. # make test harness, it is good.
  2. CFLAGS = $(CFLAGS) /W3 /Ox /I../../src/headers/ /I./
  3. default: test.exe
  4. OBJECTS = test.obj cipher_hash_test.obj mac_test.obj modes_test.obj \
  5. pkcs_1_test.obj store_test.obj rsa_test.obj ecc_test.obj dsa_test.c dh_tests.obj der_tests.obj
  6. test.exe: $(OBJECTS)
  7. cl $(OBJECTS) tomcrypt.lib advapi32.lib
  8. clean:
  9. rm -f test.exe *.obj *~