Files
dropbear/demos/test/makefile.shared
Matt Johnston 0c10d50a69 import of libtomcrypt 0.99
--HG--
branch : libtomcrypt-orig
extra : convert_revision : 7122128aa22564d1a53eebfac79c0393c4d0c011
2004-12-19 11:34:45 +00:00

20 lines
473 B
Plaintext

# make test harness, it is good.
CFLAGS += -Wall -W -Os -I../../ -I./
# if you're not debugging
CFLAGS += -fomit-frame-pointer
default: test
#if you don't have mpi.o
#MPISHARED=-ltommath
OBJECTS=test.o cipher_hash_test.o mac_test.o modes_test.o \
pkcs_1_test.o store_test.o rsa_test.o ecc_test.o dsa_test.o dh_tests.o der_tests.o
test: $(OBJECTS)
libtool --mode=link gcc $(CFLAGS) $(OBJECTS) -o test -ltomcrypt $(MPISHARED)
clean:
rm -f test *.o *.obj *.exe *~