makefile.icc 448 B

1234567891011121314151617181920
  1. CFLAGS += -I../src/headers -I./
  2. CC=icc
  3. OBJECTS = base64_test.o cipher_hash_test.o der_tests.o \
  4. dsa_test.o ecc_test.o mac_test.o modes_test.o pkcs_1_test.o rsa_test.o \
  5. store_test.o test_driver.o x86_prof.o katja_test.o
  6. ifndef LIBTEST_S
  7. LIBTEST_S = libtomcrypt_prof.a
  8. endif
  9. default: $(LIBTEST_S)
  10. $(LIBTEST_S): $(OBJECTS)
  11. $(AR) $(ARFLAGS) $@ $(OBJECTS)
  12. ranlib $@
  13. clean:
  14. rm -f *.o *.a