]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/Makefile
227f3747164c958f0278617dfb4a275a3171394a
[proxmark3-svn] / armsrc / Makefile
1 # Makefile for armsrc, see ../common/Makefile.common for common settings
2
3 APP_INCLUDES = apps.h
4
5 #remove one of the following defines and comment out the relevant line
6 #in the next section to remove that particular feature from compilation
7 APP_CFLAGS = -O6 -DWITH_LF -DWITH_ISO15693 -DWITH_ISO14443a -DWITH_ISO14443b
8 #-DWITH_LCD
9
10 #SRC_LCD = fonts.c LCD.c
11 SRC_LF = lfops.c hitag2.c
12 SRC_ISO15693 = iso15693.c
13 SRC_ISO14443a = iso14443a.c
14 SRC_ISO14443b = iso14443.c
15
16 THUMBSRC = start.c \
17 $(SRC_LCD) \
18 $(SRC_ISO15693) \
19 $(SRC_LF) \
20 appmain.c printf.c \
21 util.c \
22 usb.c
23
24 # These are to be compiled in ARM mode
25 ARMSRC = fpgaloader.c \
26 legicrf.c \
27 $(SRC_ISO14443a) \
28 $(SRC_ISO14443b) \
29 crc.c
30
31 # Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
32 include ../common/Makefile.common
33
34 all: $(OBJDIR)/osimage.s19 $(OBJDIR)/fpgaimage.s19
35
36 $(OBJDIR)/fpga.o: fpga.bit
37 $(OBJCOPY) -O elf32-littlearm -I binary -B arm --redefine-sym _binary____fpga_fpga_bit_start=_binary_fpga_bit_start --redefine-sym _binary____fpga_fpga_bit_end=_binary_fpga_bit_end --prefix-sections=fpga_bit $^ $@
38
39 $(OBJDIR)/fullimage.elf: $(VERSIONOBJ) $(OBJDIR)/fpga.o $(THUMBOBJ) $(ARMOBJ) $(LIBGCC)
40 $(LD) -g -Tldscript -Map=$(patsubst %.elf,%.map,$@) -o $@ $^
41
42 $(OBJDIR)/fpgaimage.elf: $(OBJDIR)/fullimage.elf
43 $(OBJCOPY) -F elf32-littlearm --only-section .fpgaimage $^ $@
44
45 $(OBJDIR)/osimage.elf: $(OBJDIR)/fullimage.elf
46 $(OBJCOPY) -F elf32-littlearm --remove-section .fpgaimage $^ $@
47
48 clean:
49 $(DELETE) $(OBJDIR)$(PATHSEP)*.o
50 $(DELETE) $(OBJDIR)$(PATHSEP)*.elf
51 $(DELETE) $(OBJDIR)$(PATHSEP)*.s19
52 $(DELETE) $(OBJDIR)$(PATHSEP)*.map
53 $(DELETE) $(OBJDIR)$(PATHSEP)*.d
54 $(DELETE) version.c
55
56 .PHONY: all clean help
57 help:
58 @echo Multi-OS Makefile, you are running on $(DETECTED_OS)
59 @echo Possible targets:
60 @echo + all - Make both:
61 @echo + $(OBJDIR)/osimage.s19 - The OS image
62 @echo + $(OBJDIR)/fpgaimage.s19 - The FPGA image
63 @echo + clean - Clean $(OBJDIR)
64
Impressum, Datenschutz