makefile.icc 331 B

1234567891011121314
  1. # make test harness, it is good.
  2. CFLAGS += -O3 -xN -ip -I../../src/headers/ -I./
  3. CC=icc
  4. default: test
  5. OBJECTS=test.o cipher_hash_test.o mac_test.o modes_test.o \
  6. pkcs_1_test.o store_test.o rsa_test.o ecc_test.o dsa_test.o dh_tests.o der_tests.o
  7. test: $(OBJECTS)
  8. $(CC) $(OBJECTS) -ltomcrypt -o test
  9. clean:
  10. rm -f test *.o *~