]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - armsrc/Makefile
replaced gzip with an own compressor tool (fpga_compress.c, based on zlib)
[proxmark3-svn] / armsrc / Makefile
index e8db3b31f9a8e5d39f64040446bc9aef6a88583a..9efbb1ad6e9c131282f5d5a8c6695adc93a875ad 100644 (file)
-CC     = arm-elf-gcc\r
-AS     = arm-elf-as\r
-LD     = arm-elf-ld\r
-OBJCOPY = arm-elf-objcopy\r
-\r
-OBJDIR = obj\r
-\r
-INCLUDE = -I../include\r
-\r
-INCLUDES = ../include/proxmark3.h ../include/at91sam7s128.h ../include/config_gpio.h ../include/usb_cmd.h apps.h\r
-LIB = "..\..\devkitARM\lib\gcc\arm-elf\4.1.0\interwork"\r
-\r
-CFLAGS = -O6 -c $(INCLUDE) -Wall\r
-\r
-OBJ =  $(OBJDIR)/start.o \\r
-               $(OBJDIR)/appmain.o \\r
-               $(OBJDIR)/fpga.o \\r
-               $(OBJDIR)/iso14443.o \\r
-               $(OBJDIR)/iso14443a.o \\r
-               $(OBJDIR)/iso15693.o \\r
-               $(OBJDIR)/util.o \\r
-               $(OBJDIR)/fonts.o \\r
-               $(OBJDIR)/LCD.o\r
-\r
-OBJFPGA = \\r
-               $(OBJDIR)/fpgaimg.o\r
-\r
-OBJCOMMON = \\r
-               $(OBJDIR)/usb.o\r
-\r
-all: osimage.s19\r
-\r
-$(OBJDIR)/fpgaimage.s19: $(OBJDIR)/fpgaimg.o\r
-       @echo obj/fpgaimage.s19\r
-       @$(LD) -g -Tldscript-fpga -o $(OBJDIR)\fpgaimage.elf $(OBJDIR)/fpgaimg.o\r
-       @$(OBJCOPY) -Osrec --srec-forceS3 $(OBJDIR)\fpgaimage.elf $(OBJDIR)\fpgaimage.s19\r
-\r
-$(OBJDIR)/osimage.s19: $(OBJ) $(OBJCOMMON)\r
-       @echo obj/osimage.s19\r
-       @$(LD) -g -Tldscript -o $(OBJDIR)\osimage.elf $(OBJ) $(OBJCOMMON) $(LIB)\libgcc.a\r
-       @$(OBJCOPY) -Osrec --srec-forceS3 $(OBJDIR)\osimage.elf $(OBJDIR)\osimage.s19\r
-\r
-osimage.s19: $(OBJDIR)/osimage.s19 $(OBJDIR)/fpgaimage.s19\r
-       @echo osimage.s19\r
-\r
-$(OBJ): $(@B).c $(INCLUDES)\r
-       @echo $(@B).c\r
-       @$(CC) $(CFLAGS) -mthumb -mthumb-interwork $(@B).c -o $(OBJDIR)/$(@B).o\r
-\r
-$(OBJCOMMON): ../common/$(@B).c $(INCLUDES)\r
-       @echo $(@B).c\r
-       @$(CC) $(CFLAGS) -mthumb -mthumb-interwork ../common/$(@B).c -o $(OBJDIR)/$(@B).o\r
-\r
-$(OBJFPGA): $(@B).c $(INCLUDES)\r
-       @echo $(@B).c\r
-       @$(CC) $(CFLAGS) -mthumb -mthumb-interwork $(@B).c -o $(OBJDIR)/$(@B).o\r
-\r
-clean:\r
-       del /q obj\*.o\r
-       del /q obj\*.elf\r
-       del /q obj\*.s19\r
+#-----------------------------------------------------------------------------
+# This code is licensed to you under the terms of the GNU GPL, version 2 or,
+# at your option, any later version. See the LICENSE.txt file for the text of
+# the license.
+#-----------------------------------------------------------------------------
+# Makefile for armsrc, see ../common/Makefile.common for common settings
+#-----------------------------------------------------------------------------
+
+APP_INCLUDES = apps.h
+
+#remove one of the following defines and comment out the relevant line
+#in the next section to remove that particular feature from compilation  
+APP_CFLAGS     = -DWITH_LF -DWITH_ISO15693 -DWITH_ISO14443a -DWITH_ISO14443b -DWITH_ICLASS -DWITH_LEGICRF -DWITH_HITAG  -DWITH_CRC -DON_DEVICE \
+                               -fno-strict-aliasing -ffunction-sections -fdata-sections
+#-DWITH_LCD 
+
+#SRC_LCD = fonts.c LCD.c
+SRC_LF = lfops.c hitag2.c lfsampling.c
+SRC_ISO15693 = iso15693.c iso15693tools.c
+SRC_ISO14443a = epa.c iso14443a.c mifareutil.c mifarecmd.c mifaresniff.c
+SRC_ISO14443b = iso14443.c
+SRC_CRAPTO1 = crapto1.c crypto1.c des.c aes.c 
+SRC_CRC = iso14443crc.c crc.c crc16.c crc32.c
+
+#the zlib source files required for decompressing the fpga config at run time
+SRC_ZLIB = inflate.c inffast.c inftrees.c adler32.c zutil.c
+#additional defines required to compile zlib
+ZLIB_CFLAGS = -DZ_SOLO -DZ_PREFIX -DNO_GZIP
+APP_CFLAGS += $(ZLIB_CFLAGS)
+# zlib includes:
+APP_CFLAGS += -I../zlib
+
+# stdint.h provided locally until GCC 4.5 becomes C99 compliant
+APP_CFLAGS += -I.
+
+# Compile these in thumb mode (small size)
+THUMBSRC = start.c \
+       $(SRC_LCD) \
+       $(SRC_ISO15693) \
+       $(SRC_LF) \
+       $(SRC_ZLIB) \
+       appmain.c \
+       printf.c \
+       util.c \
+       string.c \
+       usb_cdc.c \
+       cmd.c
+
+# These are to be compiled in ARM mode
+ARMSRC = fpgaloader.c \
+       legicrf.c \
+       lfdemod.c \
+       $(SRC_ISO14443a) \
+       $(SRC_ISO14443b) \
+       $(SRC_CRAPTO1) \
+       $(SRC_CRC) \
+       legic_prng.c \
+       iclass.c \
+       BigBuf.c \
+       optimized_cipher.c
+
+# Do not move this inclusion before the definition of {THUMB,ASM,ARM}SRC
+include ../common/Makefile.common
+
+OBJS = $(OBJDIR)/osimage.s19 
+FPGA_COMPRESSOR = ../client/fpga_compress
+
+all: $(OBJS)
+
+$(OBJDIR)/fpga_lf.o: $(OBJDIR)/fpga_lf.bit.z
+       $(OBJCOPY) -O elf32-littlearm -I binary -B arm --redefine-sym _binary_obj_fpga_lf_bit_z_start=_binary_fpga_lf_bit_start --redefine-sym _binary_obj_fpga_lf_bit_z_end=_binary_fpga_lf_bit_end --prefix-sections=fpga_lf_bit  $^ $@
+
+$(OBJDIR)/fpga_hf.o: $(OBJDIR)/fpga_hf.bit.z
+       $(OBJCOPY) -O elf32-littlearm -I binary -B arm --redefine-sym _binary_obj_fpga_hf_bit_z_start=_binary_fpga_hf_bit_start --redefine-sym _binary_obj_fpga_hf_bit_z_end=_binary_fpga_hf_bit_end --prefix-sections=fpga_hf_bit  $^ $@
+
+$(OBJDIR)/%.bit.z: %.bit $(FPGA_COMPRESSOR)
+       $(FPGA_COMPRESSOR) $(filter %.bit,$^) $@  
+
+$(OBJDIR)/osimage.elf: $(VERSIONOBJ) $(OBJDIR)/fpga_lf.o $(OBJDIR)/fpga_hf.o $(THUMBOBJ) $(ARMOBJ)
+       $(CC) $(LDFLAGS) -Wl,-T,ldscript,-Map,$(patsubst %.elf,%.map,$@) -o $@ $^ $(LIBS)
+
+tarbin: $(OBJS)
+       $(TAR) $(TARFLAGS) ../proxmark3-$(platform)-bin.tar $(OBJS:%=armsrc/%) $(OBJS:%.s19=armsrc/%.elf)
+
+clean:
+       $(DELETE) $(OBJDIR)$(PATHSEP)*.o
+       $(DELETE) $(OBJDIR)$(PATHSEP)*.elf
+       $(DELETE) $(OBJDIR)$(PATHSEP)*.s19
+       $(DELETE) $(OBJDIR)$(PATHSEP)*.map
+       $(DELETE) $(OBJDIR)$(PATHSEP)*.d
+       $(DELETE) $(OBJDIR)$(PATHSEP)*.z
+       $(DELETE) version.c
+
+.PHONY: all clean help
+help:
+       @echo Multi-OS Makefile, you are running on $(DETECTED_OS)
+       @echo Possible targets:
+       @echo + all    - Build the OS image $(OBJDIR)/osimage.s19
+       @echo + clean  - Clean $(OBJDIR)
+
Impressum, Datenschutz