| 12345678910111213141516171819 |
- CFLAGS += -I../src/headers -I./ -Wall -W
- OBJECTS = base64_test.o cipher_hash_test.o der_tests.o \
- dsa_test.o ecc_test.o mac_test.o modes_test.o pkcs_1_test.o rsa_test.o \
- store_test.o test.o x86_prof.o
- ifndef LIBTEST_S
- LIBTEST_S=libtomcrypt_prof.a
- endif
- default: $(LIBTEST_S)
- $(LIBTEST_S): $(OBJECTS)
- $(AR) $(ARFLAGS) $@ $(OBJECTS)
- ranlib $@
- clean:
- rm -f *.o *.a
|