2013-08-21 16:20:52 +00:00
|
|
|
CC = gcc
|
2014-06-07 11:38:56 +00:00
|
|
|
CFLAGS = -Wall -Wextra -Os -Wno-sequence-point
|
|
|
|
OBJS = bignum.o ecdsa.o secp256k1.o rand.o hmac.o bip32.o bip39.o pbkdf2.o base58.o
|
|
|
|
OBJS += ripemd160.o
|
|
|
|
OBJS += sha2.o
|
|
|
|
OBJS += aescrypt.o aeskey.o aestab.o aes_modes.o
|
2013-08-18 15:30:23 +00:00
|
|
|
|
2013-09-22 10:42:35 +00:00
|
|
|
all: tests test-openssl
|
2013-08-17 12:20:15 +00:00
|
|
|
|
2013-09-19 12:52:52 +00:00
|
|
|
%.o: %.c %.h
|
2013-08-17 12:20:15 +00:00
|
|
|
$(CC) $(CFLAGS) -o $@ -c $<
|
|
|
|
|
2013-09-21 15:41:02 +00:00
|
|
|
tests: tests.o $(OBJS)
|
|
|
|
gcc tests.o $(OBJS) -lcheck -o tests
|
2013-09-11 17:02:22 +00:00
|
|
|
|
2013-09-22 10:42:35 +00:00
|
|
|
test-openssl: test-openssl.o $(OBJS)
|
|
|
|
gcc test-openssl.o $(OBJS) -o test-openssl -lcrypto
|
2013-08-17 12:20:15 +00:00
|
|
|
|
|
|
|
clean:
|
2013-09-22 10:42:35 +00:00
|
|
|
rm -f *.o tests test-openssl
|