]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - armsrc/Makefile
Small changes to some armsrc makefile to allow conditional compilation of various...
[proxmark3-svn] / armsrc / Makefile
index bc15aeb9d568f48a6b8161dde7e06b20d04e4a6e..d73f2e77bc061c9ecb90083b102e67c97a836592 100644 (file)
@@ -2,24 +2,29 @@
 \r
 APP_INCLUDES = apps.h\r
 \r
-# Add the "-DWITH_LCD" flag in APP_CLFAGS to add support for LCD\r
-# and add SRC_LCD to THUMBSRC\r
-APP_CFLAGS     = -O6\r
+#remove one of the following defines and comment out the relevant line\r
+#in the next section to remove that particular feature from compilation  \r
+APP_CFLAGS     = -O6 -DWITH_ISO15693 -DWITH_ISO14443a -DWITH_ISO14443b\r
+#-DWITH_LCD\r
 \r
-SRC_LCD = fonts.c LCD.c\r
+#SRC_LCD = fonts.c LCD.c\r
+SRC_ISO15693 = iso15693.c\r
+SRC_ISO14443a = iso14443a.c\r
+SRC_ISO14443b = iso14443.c\r
 \r
 THUMBSRC = start.c \\r
+       $(SRC_LCD) \\r
+       $(SRC_ISO15693) \\r
        appmain.c \\r
        lfops.c \\r
-       iso15693.c \\r
        util.c \\r
        hitag2.c \\r
        usb.c\r
 \r
 # These are to be compiled in ARM mode\r
-ARMSRC =  iso14443.c \\r
-       iso14443a.c \\r
-       fpgaloader.c\r
+ARMSRC = fpgaloader.c \\r
+       $(SRC_ISO14443a) \\r
+       $(SRC_ISO14443b)\r
 \r
 # Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC\r
 include ../common/Makefile.common\r
Impressum, Datenschutz