]> git.zerfleddert.de Git - proxmark3-svn/blame - common/Makefile.common
CHG: added some comments when changing the HAS_512_FLASH macro directive.
[proxmark3-svn] / common / Makefile.common
CommitLineData
bd20f8f4 1#-----------------------------------------------------------------------------
2# This code is licensed to you under the terms of the GNU GPL, version 2 or,
3# at your option, any later version. See the LICENSE.txt file for the text of
4# the license.
5#-----------------------------------------------------------------------------
6# Common makefile functions for all platforms
7#-----------------------------------------------------------------------------
8
7e931bbd 9# This new makefile replaces the previous Makefile/Makefile.linux
10# with as much common code for both environments as possible.
11# Following is a short OS detection to set up variables, all the
12# remaining Makefile should be portable and only depend on these
13# variables
0fc0fca5 14#
15
16# Make sure that all is the default target
17# (The including Makefile still needs to define what 'all' is)
bd846386 18
19platform = $(shell uname)
20
0fc0fca5 21all:
7e931bbd 22
5f60ac57 23CROSS ?= arm-none-eabi-
d5be6f7c 24CC = $(CROSS)gcc
25AS = $(CROSS)as
26LD = $(CROSS)ld
27OBJCOPY = $(CROSS)objcopy
9783989b 28GZIP=gzip
d5be6f7c 29
30OBJDIR = obj
31
7fe9b0b7 32INCLUDE = -I../include -I../common
d5be6f7c 33
bd846386 34TAR=tar
35TARFLAGS = -C .. -rvf
36
7e931bbd 37# Windows' echo echos its input verbatim, on Posix there is some
38# amount of shell command line parsing going on. echo "" on
39# Windows yields literal "", on Linux yields an empty line
40ifeq ($(shell echo ""),)
0fc0fca5 41
db335b3d 42# This is probably a proper system, so we can use uname
7e931bbd 43UNAME := $(shell uname)
7e931bbd 44DELETE=rm -rf
0fc0fca5 45MOVE=mv
8a6aec16 46COPY=cp
7e931bbd 47PATHSEP=/
d5be6f7c 48FLASH_TOOL=client/flasher
b38742c9 49DETECTED_OS=$(UNAME)
7e931bbd 50else
0fc0fca5 51
7e931bbd 52# Assume that we are running on Windows.
53DELETE=del /q
0fc0fca5 54MOVE=ren
8a6aec16 55COPY=copy
7e931bbd 56PATHSEP=\\#
ad493abc 57FLASH_TOOL=client\\flasher.exe
7e931bbd 58DETECTED_OS=Windows
0fc0fca5 59
7e931bbd 60endif
61
19d9376c 62#
63# uncomment these two; to enable EMV
64#
ed55e9ae 65#APP_CFLAGS += -DWITH_EMV
573e8d72 66#COMMON_FLAGS += -DWITH_EMV
19d9376c 67#
68# uncomment these two; to fix 256 vs 512kb PM3 devices
69# flashing bootrom -b is needed
70#
5a085457 71APP_CFLAGS += -DHAS_512_FLASH
573e8d72 72COMMON_FLAGS += -DHAS_512_FLASH
73
9783989b 74# Also search prerequisites in the common directory (for usb.c), the fpga directory (for fpga.bit), and the zlib directory
75VPATH = . ../common ../fpga ../zlib
7e931bbd 76
6949aca9 77INCLUDES = ../include/proxmark3.h ../include/at91sam7s512.h ../include/config_gpio.h ../include/usb_cmd.h $(APP_INCLUDES)
7e931bbd 78
62577a62 79CFLAGS = -c $(INCLUDE) -Wall -Werror -pedantic -Wunused -std=c99 $(APP_CFLAGS) -Os
98540684 80LDFLAGS = -nostartfiles -nodefaultlibs -Wl,-gc-sections -n
81LIBS = -lgcc
0fc0fca5 82
9783989b 83THUMBOBJ = $(patsubst %.c,$(OBJDIR)/%.o,$(notdir $(THUMBSRC)))
84ARMOBJ = $(patsubst %.c,$(OBJDIR)/%.o,$(notdir $(ARMSRC)))
85ASMOBJ = $(patsubst %.s,$(OBJDIR)/%.o,$(notdir $(ASMSRC)))
4271e82d 86VERSIONOBJ = $(OBJDIR)/version.o
0fc0fca5 87
88$(THUMBOBJ): $(OBJDIR)/%.o: %.c $(INCLUDES)
89 $(CC) $(CFLAGS) -mthumb -mthumb-interwork -o $@ $<
90
91$(ARMOBJ): $(OBJDIR)/%.o: %.c $(INCLUDES)
92 $(CC) $(CFLAGS) -mthumb-interwork -o $@ $<
93
94$(ASMOBJ): $(OBJDIR)/%.o: %.s
95 $(CC) $(CFLAGS) -mthumb-interwork -o $@ $<
96
4271e82d 97$(VERSIONOBJ): $(OBJDIR)/%.o: %.c $(INCLUDES)
98 $(CC) $(CFLAGS) -mthumb -mthumb-interwork -o $@ $<
99
2bfed17d 100# This objcopy call translates physical flash addresses to logical addresses
db335b3d 101# without touching start address or RAM addresses (.bss and .data sections)
2bfed17d 102# See ldscript.common. -- Henryk Plötz <henryk@ploetzli.ch> 2009-08-27
4f3bd973 103OBJCOPY_TRANSLATIONS = --no-change-warnings \
db335b3d 104 --change-addresses -0x100000 --change-start 0 \
8fcbf652 105 --change-section-address .bss+0 --change-section-address .data+0 \
4f3bd973 106 --change-section-address .commonarea+0
107$(OBJDIR)/%.s19: $(OBJDIR)/%.elf
108 $(OBJCOPY) -Osrec --srec-forceS3 --strip-debug $(OBJCOPY_TRANSLATIONS) $^ $@
0fc0fca5 109
8a6aec16 110# version.c should be remade on every compilation
111.PHONY: version.c
112version.c: default_version.c
113 perl ../tools/mkversion.pl .. > $@ || $(COPY) $^ $@
114
0fc0fca5 115# Automatic dependency generation
116DEPENDENCY_FILES = $(patsubst %.c,$(OBJDIR)/%.d,$(notdir $(THUMBSRC))) \
117 $(patsubst %.c,$(OBJDIR)/%.d,$(notdir $(ARMSRC))) \
118 $(patsubst %.s,$(OBJDIR)/%.d,$(notdir $(ASMSRC)))
119
120$(DEPENDENCY_FILES): Makefile ../common/Makefile.common
9783989b 121
4271e82d 122$(patsubst %.o,%.d,$(THUMBOBJ) $(ARMOBJ)): $(OBJDIR)/%.d: %.c
8652988d 123 @$(CC) -MM -MT "$(@) $(@:.d=.o)" $(CFLAGS) $< > $@
4271e82d 124$(patsubst %.o,%.d,$(ASMOBJ)):$(OBJDIR)/%.d: %.s
8652988d 125 @$(CC) -MM -MT "$(@) $(@:.d=.o)" $(CFLAGS) $< > $@
0fc0fca5 126
127-include $(DEPENDENCY_FILES)
Impressum, Datenschutz