2014-07-07 19:34:54 +00:00
|
|
|
CC = gcc
|
|
|
|
|
|
|
|
OPTFLAGS = -Os -g
|
|
|
|
|
|
|
|
CFLAGS += $(OPTFLAGS) \
|
|
|
|
-W \
|
|
|
|
-Wall \
|
|
|
|
-Wextra \
|
|
|
|
-Wimplicit-function-declaration \
|
|
|
|
-Wredundant-decls \
|
|
|
|
-Wstrict-prototypes \
|
|
|
|
-Wundef \
|
|
|
|
-Wshadow \
|
|
|
|
-Wpointer-arith \
|
|
|
|
-Wformat \
|
|
|
|
-Wreturn-type \
|
|
|
|
-Wsign-compare \
|
|
|
|
-Wmultichar \
|
|
|
|
-Wformat-nonliteral \
|
|
|
|
-Winit-self \
|
|
|
|
-Wuninitialized \
|
|
|
|
-Wformat-security \
|
|
|
|
-Werror
|
|
|
|
|
|
|
|
# disable sequence point warning because of AES code
|
|
|
|
CFLAGS += -Wno-sequence-point
|
|
|
|
|
|
|
|
# disable certain optimizations and features when small footprint is required
|
2014-07-03 14:59:41 +00:00
|
|
|
ifdef SMALL
|
2014-07-07 18:14:15 +00:00
|
|
|
CFLAGS += -DUSE_PRECOMPUTED_IV=0 -DUSE_PRECOMPUTED_CP=0 -DUSE_PUBKEY_VALIDATE=0
|
2014-07-03 14:59:41 +00:00
|
|
|
endif
|
2014-07-07 19:34:54 +00:00
|
|
|
|
2014-06-07 11:38:56 +00:00
|
|
|
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
|
|
|
|
2014-07-04 19:11:27 +00:00
|
|
|
TESTLIBS = -lcheck -lrt -lpthread -lm
|
|
|
|
TESTSSLLIBS = -lcrypto
|
|
|
|
|
2013-09-22 10:42:35 +00:00
|
|
|
all: tests test-openssl
|
2013-08-17 12:20:15 +00:00
|
|
|
|
2014-07-07 18:14:15 +00:00
|
|
|
%.o: %.c %.h options.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)
|
2014-08-11 00:04:42 +00:00
|
|
|
$(CC) tests.o $(OBJS) $(TESTLIBS) -o tests
|
2013-09-11 17:02:22 +00:00
|
|
|
|
2013-09-22 10:42:35 +00:00
|
|
|
test-openssl: test-openssl.o $(OBJS)
|
2014-08-11 00:04:42 +00:00
|
|
|
$(CC) test-openssl.o $(OBJS) $(TESTSSLLIBS) -o test-openssl
|
2013-08-17 12:20:15 +00:00
|
|
|
|
|
|
|
clean:
|
2013-09-22 10:42:35 +00:00
|
|
|
rm -f *.o tests test-openssl
|