makefile 427 B

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