CHG: 'emv compilation' since the client makefile doesn't import makefile.common anymore, need to move some compilor directive. Now need to change two files for EMV compilation.

* client/Makefile
 * common/Makefile.common
This commit is contained in:
iceman1001
2017-09-18 22:33:22 +02:00
parent 28f1f23d48
commit 14550557be
4 changed files with 6 additions and 11 deletions

View File

@@ -86,19 +86,13 @@ ARMSRC = fpgaloader.c \
$(SRC_ISO14443a) \
$(SRC_ISO14443b) \
$(SRC_CRAPTO1) \
$(SRC_ICLASS) \
$(SRC_EMV) \
$(SRC_CRC) \
parity.c \
usb_cdc.c \
cmd.c
ifneq ($(WITH_ICLASS),"")
ARMSRC += $(SRC_ICLASS)
endif
ifneq ($(WITH_EMV),"")
ARMSRC += $(SRC_EMV)
endif
# Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
include ../common/Makefile.common

View File

@@ -243,7 +243,6 @@ extern void EMVFuzz_RATS(uint8_t ratslen, uint8_t* RATS);
extern void EMVReadRecord(uint8_t arg0, uint8_t arg1,emvcard* inputcard);
extern void EMVSelectPPSE();
extern void EMVSelectAID(uint8_t *AID, uint8_t AIDlen, emvcard* inputcard);
extern void EMVTransaction();
extern void EMVClone(uint8_t maxsfi, uint8_t maxrecord);
extern void EMVSim();
extern void EMVTest();