2013-08-21 16:20:52 +00:00
|
|
|
CC = gcc
|
|
|
|
CFLAGS = -Wall -Os
|
2013-09-15 23:32:56 +00:00
|
|
|
OBJS = bignum.o ecdsa.o secp256k1.o sha2.o rand.o hmac.o bip32.o ripemd160.o
|
2013-08-18 15:30:23 +00:00
|
|
|
|
2013-09-12 17:21:24 +00:00
|
|
|
all: test-bip32 test-pubkey test-rfc6979 test-speed test-verify
|
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-12 17:21:24 +00:00
|
|
|
test-bip32: test-bip32.o $(OBJS)
|
|
|
|
gcc test-bip32.o $(OBJS) -o test-bip32
|
|
|
|
|
|
|
|
test-pubkey: test-pubkey.o $(OBJS)
|
|
|
|
gcc test-pubkey.o $(OBJS) -o test-pubkey
|
|
|
|
|
2013-09-11 17:02:22 +00:00
|
|
|
test-rfc6979: test-rfc6979.o $(OBJS)
|
|
|
|
gcc test-rfc6979.o $(OBJS) -o test-rfc6979
|
|
|
|
|
2013-08-18 15:30:23 +00:00
|
|
|
test-speed: test-speed.o $(OBJS)
|
2013-08-21 18:05:25 +00:00
|
|
|
gcc test-speed.o $(OBJS) -o test-speed
|
2013-08-18 15:30:23 +00:00
|
|
|
|
|
|
|
test-verify: test-verify.o $(OBJS)
|
|
|
|
gcc test-verify.o $(OBJS) -o test-verify -lcrypto
|
2013-08-17 12:20:15 +00:00
|
|
|
|
|
|
|
clean:
|
2013-09-12 17:21:24 +00:00
|
|
|
rm -f *.o test-bip32 test-pubkey test-rfc6979 test-speed test-verify
|