]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - bootrom/Makefile
Merge pull request #969 from pwpiwi/gcc10_fixes
[proxmark3-svn] / bootrom / Makefile
index 59c22aa2dc35b03952a3cb7a2f0ee62dec0f0f42..a2cd1b404225ca676eb9d4ea6fb6b322b1416690 100644 (file)
@@ -7,10 +7,10 @@
 #-----------------------------------------------------------------------------
 
 # DO NOT use thumb mode in the phase 1 bootloader since that generates a section with glue code
-ARMSRC = 
-THUMBSRC = cmd.c usb_cdc.c bootrom.c
+ARMSRC = string.c
+THUMBSRC = usb_cdc.c bootrom.c
 ASMSRC = ram-reset.s flash-reset.s
-VERSIONSRC =
+VERSIONSRC = version.c
 
 ## There is a strange bug with the linker: Sometimes it will not emit the glue to call
 ## BootROM from ARM mode. The symbol is emitted, but the section will be filled with
@@ -19,9 +19,13 @@ VERSIONSRC =
 # ARMSRC := $(ARMSRC) $(THUMBSRC)
 # THUMBSRC := 
 
-# stdint.h provided locally until GCC 4.5 becomes C99 compliant
 APP_CFLAGS = -I.
 
+# version.c should be remade on every compilation
+.PHONY: version.c
+version.c: default_version.c
+       perl ../tools/mkversion.pl .. > $@ || $(COPY) $^ $@
+
 # Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
 include ../common/Makefile.common
 
Impressum, Datenschutz