mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 18:33:18 +08:00
19 lines
439 B
Makefile
19 lines
439 B
Makefile
MYSRCPATHS =
|
|
MYINCLUDES = -I. -I.. -I../jansson -I../../common/ -I../../include/
|
|
MYCFLAGS = -std=c99 -D_ISOC99_SOURCE
|
|
MYDEFS =
|
|
MYSRCS = \
|
|
amiibo.c \
|
|
drbg.c \
|
|
keygen.c
|
|
|
|
LIB_A = libamiibo.a
|
|
|
|
include ../../Makefile.host
|
|
|
|
# just for testing amiitool before complete migration into a lib:
|
|
|
|
amiitool:
|
|
gcc $(CFLAGS) \
|
|
amiitool.c $(MYSRCS) ../../common/commonutil.c ../ui.c -lreadline -lm ../../common/mbedtls/libmbedtls.a \
|
|
-o amiitool
|