]>
Commit | Line | Data |
---|---|---|
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 | ||
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 | |
14 | # | |
15 | ||
16 | # Make sure that all is the default target | |
17 | # (The including Makefile still needs to define what 'all' is) | |
18 | all: | |
19 | ||
20 | CROSS ?= arm-eabi- | |
21 | CC = $(CROSS)gcc | |
22 | AS = $(CROSS)as | |
23 | LD = $(CROSS)ld | |
24 | OBJCOPY = $(CROSS)objcopy | |
25 | ||
26 | OBJDIR = obj | |
27 | ||
28 | INCLUDE = -I../include -I../common | |
29 | ||
30 | # Windows' echo echos its input verbatim, on Posix there is some | |
31 | # amount of shell command line parsing going on. echo "" on | |
32 | # Windows yields literal "", on Linux yields an empty line | |
33 | ifeq ($(shell echo ""),) | |
34 | ||
35 | # This is probably a proper system, so we can use uname | |
36 | UNAME := $(shell uname) | |
37 | DELETE=rm -rf | |
38 | MOVE=mv | |
39 | COPY=cp | |
40 | PATHSEP=/ | |
41 | FLASH_TOOL=client/flasher | |
42 | DETECTED_OS=UNAME | |
43 | ||
44 | else | |
45 | ||
46 | # Assume that we are running on Windows. | |
47 | DELETE=del /q | |
48 | MOVE=ren | |
49 | COPY=copy | |
50 | PATHSEP=\\# | |
51 | FLASH_TOOL=winsrc\\prox.exe | |
52 | DETECTED_OS=Windows | |
53 | ||
54 | endif | |
55 | ||
56 | ||
57 | # Also search prerequisites in the common directory (for usb.c), and the fpga directory (for fpga.bit) | |
58 | VPATH = . ../common/ ../fpga/ | |
59 | ||
60 | INCLUDES = ../include/proxmark3.h ../include/at91sam7s512.h ../include/config_gpio.h ../include/usb_cmd.h $(APP_INCLUDES) | |
61 | ||
62 | CFLAGS = -c $(INCLUDE) -Wall -Werror -pedantic -std=gnu99 $(APP_CFLAGS) | |
63 | LDFLAGS = -nostartfiles -nodefaultlibs -Wl,-gc-sections -n | |
64 | LIBS = -lgcc | |
65 | ||
66 | THUMBOBJ = $(patsubst %.c,$(OBJDIR)/%.o,$(THUMBSRC)) | |
67 | ARMOBJ = $(ARMSRC:%.c=$(OBJDIR)/%.o) | |
68 | ASMOBJ = $(patsubst %.s,$(OBJDIR)/%.o,$(ASMSRC)) | |
69 | VERSIONOBJ = $(OBJDIR)/version.o | |
70 | ||
71 | $(THUMBOBJ): $(OBJDIR)/%.o: %.c $(INCLUDES) | |
72 | $(CC) $(CFLAGS) -mthumb -mthumb-interwork -o $@ $< | |
73 | ||
74 | $(ARMOBJ): $(OBJDIR)/%.o: %.c $(INCLUDES) | |
75 | $(CC) $(CFLAGS) -mthumb-interwork -o $@ $< | |
76 | ||
77 | $(ASMOBJ): $(OBJDIR)/%.o: %.s | |
78 | $(CC) $(CFLAGS) -mthumb-interwork -o $@ $< | |
79 | ||
80 | $(VERSIONOBJ): $(OBJDIR)/%.o: %.c $(INCLUDES) | |
81 | $(CC) $(CFLAGS) -mthumb -mthumb-interwork -o $@ $< | |
82 | ||
83 | # This objcopy call translates physical flash addresses to logical addresses | |
84 | # without touching start address or RAM addresses (.bss and .data sections) | |
85 | # See ldscript.common. -- Henryk Plötz <henryk@ploetzli.ch> 2009-08-27 | |
86 | OBJCOPY_TRANSLATIONS = --no-change-warnings \ | |
87 | --change-addresses -0x100000 --change-start 0 \ | |
88 | --change-section-address .bss+0 --change-section-address .data+0 \ | |
89 | --change-section-address .commonarea+0 | |
90 | $(OBJDIR)/%.s19: $(OBJDIR)/%.elf | |
91 | $(OBJCOPY) -Osrec --srec-forceS3 --strip-debug $(OBJCOPY_TRANSLATIONS) $^ $@ | |
92 | ||
93 | # version.c should be remade on every compilation | |
94 | .PHONY: version.c | |
95 | version.c: default_version.c | |
96 | perl ../tools/mkversion.pl .. > $@ || $(COPY) $^ $@ | |
97 | ||
98 | # Automatic dependency generation | |
99 | DEPENDENCY_FILES = $(patsubst %.c,$(OBJDIR)/%.d,$(notdir $(THUMBSRC))) \ | |
100 | $(patsubst %.c,$(OBJDIR)/%.d,$(notdir $(ARMSRC))) \ | |
101 | $(patsubst %.s,$(OBJDIR)/%.d,$(notdir $(ASMSRC))) | |
102 | ||
103 | $(DEPENDENCY_FILES): Makefile ../common/Makefile.common | |
104 | $(patsubst %.o,%.d,$(THUMBOBJ) $(ARMOBJ)): $(OBJDIR)/%.d: %.c | |
105 | @$(CC) -MM -MT "$(@) $(@:.d=.o)" $(CFLAGS) $< > $@ | |
106 | $(patsubst %.o,%.d,$(ASMOBJ)):$(OBJDIR)/%.d: %.s | |
107 | @$(CC) -MM -MT "$(@) $(@:.d=.o)" $(CFLAGS) $< > $@ | |
108 | ||
109 | -include $(DEPENDENCY_FILES) |