mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-14 13:44:49 +08:00
20 lines
439 B
Makefile
20 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
|