From b0802c40dfaaffff54cdd336064387d4fe8a7aab Mon Sep 17 00:00:00 2001 From: marshmellow42 Date: Tue, 31 Jul 2018 13:54:14 -0400 Subject: [PATCH] remove non-existing file references --- armsrc/Makefile | 8 +------- client/Makefile | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/armsrc/Makefile b/armsrc/Makefile index 47fd0400..643b14b6 100644 --- a/armsrc/Makefile +++ b/armsrc/Makefile @@ -16,7 +16,7 @@ APP_CFLAGS = -DON_DEVICE \ include ../common/Makefile_Enabled_Options.common ifneq (,$(findstring LCD,$(APP_CFLAGS))) - SRC_LCD = fonts.c LCD.c + SRC_LCD = #fonts.c LCD.c else SRC_LCD = endif @@ -27,11 +27,6 @@ SRC_ISO14443a = epa.c iso14443a.c mifareutil.c mifarecmd.c mifaresniff.c mifares SRC_ISO14443b = iso14443b.c SRC_CRAPTO1 = crypto1.c des.c SRC_CRC = iso14443crc.c crc.c crc16.c crc32.c parity.c -ifneq (,$(findstring SMARTCARD,$(APP_CFLAGS))) - SRC_SMARTCARD = i2c.c -else - SRC_SMARTCARD = -endif #the FPGA bitstream files. Note: order matters! FPGA_BITSTREAMS = fpga_lf.bit fpga_hf.bit @@ -49,7 +44,6 @@ THUMBSRC = start.c \ $(SRC_ISO15693) \ $(SRC_LF) \ $(SRC_ZLIB) \ - $(SRC_SMARTCARD) \ appmain.c \ printf.c \ util.c \ diff --git a/client/Makefile b/client/Makefile index affcb923..2d256b72 100644 --- a/client/Makefile +++ b/client/Makefile @@ -26,11 +26,6 @@ CXXFLAGS = -I../include -Wall -O3 APP_CFLAGS = include ../common/Makefile_Enabled_Options.common CFLAGS += $(APP_CFLAGS) -ifneq (,$(findstring WITH_SMARTCARD,$(APP_CFLAGS))) - SRC_SMARTCARD = cmdsmartcard.c -else - SRC_SMARTCARD = -endif LUAPLATFORM = generic platform = $(shell uname) @@ -98,8 +93,7 @@ CORESRCS = uart_posix.c \ ui.c \ comms.c -CMDSRCS = $(SRC_SMARTCARD) \ - crapto1/crapto1.c\ +CMDSRCS = crapto1/crapto1.c\ crapto1/crypto1.c\ polarssl/des.c \ polarssl/aes.c\