mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
chg: added emv4 changes.
broke out the includes into a variable instead. was getting long
This commit is contained in:
parent
fefac686e8
commit
40b1922187
1 changed files with 20 additions and 7 deletions
|
@ -21,7 +21,8 @@ OBJDIR = obj
|
||||||
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread -lm
|
||||||
LUALIB = ../liblua/liblua.a
|
LUALIB = ../liblua/liblua.a
|
||||||
LDFLAGS = $(ENV_LDFLAGS)
|
LDFLAGS = $(ENV_LDFLAGS)
|
||||||
CFLAGS = $(ENV_CFLAGS) -std=c99 -D_ISOC99_SOURCE -I. -I../include -I../common -I../zlib -I../uart -I/opt/local/include -I../liblua -Wall -g -O3
|
INCLUDES = -I. -I../include -I../common -I../common/polarssl -I../zlib -I../uart -I/opt/local/include -I../liblua
|
||||||
|
CFLAGS = $(ENV_CFLAGS) -std=c99 -D_ISOC99_SOURCE $(INCLUDES) -Wall -g -O3
|
||||||
CXXFLAGS = -I../include -Wall -O3
|
CXXFLAGS = -I../include -Wall -O3
|
||||||
|
|
||||||
LUAPLATFORM = generic
|
LUAPLATFORM = generic
|
||||||
|
@ -90,9 +91,15 @@ CORESRCS = uart_posix.c \
|
||||||
CMDSRCS = crapto1/crapto1.c \
|
CMDSRCS = crapto1/crapto1.c \
|
||||||
crapto1/crypto1.c \
|
crapto1/crypto1.c \
|
||||||
mfkey.c \
|
mfkey.c \
|
||||||
|
tea.c \
|
||||||
|
polarssl/des.c \
|
||||||
|
polarssl/aes.c \
|
||||||
|
polarssl/bignum.c\
|
||||||
|
polarssl/rsa.c\
|
||||||
|
polarssl/sha1.c \
|
||||||
|
polarssl/sha256.c \
|
||||||
loclass/cipher.c \
|
loclass/cipher.c \
|
||||||
loclass/cipherutils.c \
|
loclass/cipherutils.c \
|
||||||
loclass/des.c \
|
|
||||||
loclass/ikeys.c \
|
loclass/ikeys.c \
|
||||||
loclass/hash1_brute.c \
|
loclass/hash1_brute.c \
|
||||||
loclass/elite_crack.c \
|
loclass/elite_crack.c \
|
||||||
|
@ -106,16 +113,27 @@ CMDSRCS = crapto1/crapto1.c \
|
||||||
iso14443crc.c \
|
iso14443crc.c \
|
||||||
legic_prng.c \
|
legic_prng.c \
|
||||||
iso15693tools.c \
|
iso15693tools.c \
|
||||||
|
prng.c \
|
||||||
data.c \
|
data.c \
|
||||||
graph.c \
|
graph.c \
|
||||||
cmddata.c \
|
cmddata.c \
|
||||||
lfdemod.c \
|
lfdemod.c \
|
||||||
|
emv/crypto_polarssl.c\
|
||||||
|
emv/crypto.c\
|
||||||
|
emv/emv_pk.c\
|
||||||
|
emv/emv_pki.c\
|
||||||
|
emv/emv_pki_priv.c\
|
||||||
|
emv/test/cryptotest.c\
|
||||||
emv/apduinfo.c \
|
emv/apduinfo.c \
|
||||||
emv/dump.c \
|
emv/dump.c \
|
||||||
emv/tlv.c \
|
emv/tlv.c \
|
||||||
emv/emv_tags.c \
|
emv/emv_tags.c \
|
||||||
emv/dol.c \
|
emv/dol.c \
|
||||||
emv/emvcore.c \
|
emv/emvcore.c \
|
||||||
|
emv/test/crypto_test.c\
|
||||||
|
emv/test/sda_test.c\
|
||||||
|
emv/test/dda_test.c\
|
||||||
|
emv/test/cda_test.c\
|
||||||
emv/cmdemv.c \
|
emv/cmdemv.c \
|
||||||
cmdanalyse.c \
|
cmdanalyse.c \
|
||||||
cmdhf.c \
|
cmdhf.c \
|
||||||
|
@ -163,10 +181,7 @@ CMDSRCS = crapto1/crapto1.c \
|
||||||
scripting.c \
|
scripting.c \
|
||||||
cmdscript.c \
|
cmdscript.c \
|
||||||
pm3_bitlib.c \
|
pm3_bitlib.c \
|
||||||
aes.c \
|
|
||||||
protocols.c \
|
protocols.c \
|
||||||
sha1.c \
|
|
||||||
sha256.c \
|
|
||||||
cmdcrc.c \
|
cmdcrc.c \
|
||||||
reveng/preset.c \
|
reveng/preset.c \
|
||||||
reveng/reveng.c \
|
reveng/reveng.c \
|
||||||
|
@ -175,8 +190,6 @@ CMDSRCS = crapto1/crapto1.c \
|
||||||
reveng/model.c \
|
reveng/model.c \
|
||||||
reveng/poly.c \
|
reveng/poly.c \
|
||||||
reveng/getopt.c \
|
reveng/getopt.c \
|
||||||
tea.c \
|
|
||||||
prng.c \
|
|
||||||
bucketsort.c
|
bucketsort.c
|
||||||
# radixsort.c \
|
# radixsort.c \
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue