mirror of
https://github.com/clearml/dropbear
synced 2025-06-26 18:17:32 +00:00
--HG-- branch : libtomcrypt-orig extra : convert_revision : 7122128aa22564d1a53eebfac79c0393c4d0c011
20 lines
473 B
Plaintext
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 *~
|