Rename myself
[bertos.git] / bertos / rules.mk
1 #
2 # $Id$
3 # Copyright 2002,2003,2004,2005,2006 Develer S.r.l. (http://www.develer.com/)
4 # All rights reserved.
5 #
6 # Based on:
7 #   GCC-AVR standard Makefile part 2
8 #   Volker Oth 1/2000
9 #
10 # Author: Bernie Innocenti <bernie@codewiz.org>
11 #
12
13 # Remove all default pattern rules
14 .SUFFIXES:
15
16 # Verbosity
17 ifeq ($(V),1)
18 # Verbose build
19 Q :=
20 L := @echo >/dev/null
21 else
22 # Quiet build
23 Q := @
24 L := @echo
25 endif
26
27 # Select Bourne Again SHell as default make shell
28 SHELL := bash
29
30 # Checker build
31 ifeq ($(C),1)
32 CC = $(CHECKER)
33 CFLAGS += -Wundef -D__x86_64__=1 -D__unix__=1 -D__linux__=1 -D__STDC_VERSION__=199901L
34 endif
35
36 # Initialize $(top_srcdir) with current directory, unless it was already initialized
37 top_srcdir ?= $(shell pwd)
38
39 # Virtual Product: based on target products may be different.
40 # e.g. Embedded target = hex, s19, bin
41 #      Hosted = exe
42 TRG_TGT = $(TRG:%=$(OUTDIR)/%.tgt)
43
44 RECURSIVE_TARGETS = all-recursive install-recursive clean-recursive
45
46 # The default target
47 .PHONY: all
48 all:: all-recursive $(TRG_TGT)
49
50 # Generate project documentation
51 .PHONY: docs
52 docs:
53         $L "Building documentation"
54         $Q $(DOXYGEN)
55
56 # Generate ctags
57 .PHONY: tags
58 tags:
59         $L "Rebuilding C tags database"
60         $Q ctags -R --exclude=doc
61
62 # Run testsuite
63 .PHONY: check
64 check:
65         $L "Running testsuite"
66         $Q ./run_tests.sh
67
68 define build_target
69
70 ifeq ($$($(1)_EMBEDDED_TGT),1)
71 #use embedded specific map flags
72 $(1)_MAP_FLAGS = $$(MAP_FLAGS_EMB)
73 #In embedded we need s19, hex and bin
74 $$(OUTDIR)/$(1).tgt : $$(OUTDIR)/$(1).s19 $$(OUTDIR)/$(1).hex $$(OUTDIR)/$(1).bin
75 else
76 #On Darwin architecture the assembly doesn't link correctly if this flag is setted.
77 ifeq ($(shell uname | grep -c "Darwin"),1)
78 LIST_FLAGS = ""
79 MAP_FLAGS = ""
80 LDFLAGS = ""
81 endif
82 #use hosted specific map flags
83 $(1)_MAP_FLAGS = $$(MAP_FLAGS_HOST)
84 #in hosted application we need only executable file.
85 $$(OUTDIR)/$(1).tgt : $$(OUTDIR)/$(1)
86 endif
87
88 $(1)_LDFLAGS += $$($(1)_MAP_FLAGS)
89
90 ifneq ($$(strip $$($(1)_MCU)),)
91 # Define all project specific object files
92 $(1)_CFLAGS    += -mmcu=$$($(1)_MCU)
93 $(1)_CXXFLAGS  += -mmcu=$$($(1)_MCU)
94 $(1)_ASFLAGS   += -mmcu=$$($(1)_MCU)
95 $(1)_CPPAFLAGS += -mmcu=$$($(1)_MCU)
96 $(1)_LDFLAGS   += -mmcu=$$($(1)_MCU)
97 endif
98 ifneq ($$(strip $$($(1)_CPU)),)
99 # Define all project specific object files
100 $(1)_CFLAGS    += -mcpu=$$($(1)_CPU)
101 $(1)_CXXFLAGS  += -mcpu=$$($(1)_CPU)
102 $(1)_ASFLAGS   += -mcpu=$$($(1)_CPU)
103 $(1)_CPPAFLAGS += -mcpu=$$($(1)_CPU)
104 $(1)_LDFLAGS   += -mcpu=$$($(1)_CPU)
105 endif
106 ifneq ($$(strip $$($(1)_LDSCRIPT)),)
107 $(1)_LDFLAGS += -Wl,-T$$($(1)_LDSCRIPT)
108 endif
109
110 $(1)_CC      = $$($(1)_CROSS)$$(CC)
111 $(1)_CXX     = $$($(1)_CROSS)$$(CXX)
112 $(1)_AS      = $$($(1)_CROSS)$$(AS)
113 $(1)_OBJCOPY = $$($(1)_CROSS)$$(OBJCOPY)
114 $(1)_STRIP   = $$($(1)_CROSS)$$(STRIP)
115
116 $(1)_COBJ    = $$(foreach file,$$($(1)_CSRC:%.c=%.o),$$(OBJDIR)/$(1)/$$(file))
117 $(1)_CXXOBJ  = $$(foreach file,$$($(1)_CXXSRC:%.cpp=%.o),$$(OBJDIR)/$(1)/$$(file))
118 $(1)_PCOBJ   = $$(foreach file,$$($(1)_PCSRC:%.c=%_P.o),$$(OBJDIR)/$(1)/$$(file))
119 $(1)_AOBJ    = $$(foreach file,$$($(1)_ASRC:%.s=%.o),$$(OBJDIR)/$(1)/$$(file))
120 $(1)_CPPAOBJ = $$(foreach file,$$($(1)_CPPASRC:%.S=%.o),$$(OBJDIR)/$(1)/$$(file))
121 $(1)_OBJ    := $$($(1)_COBJ) $$($(1)_CXXOBJ) $$($(1)_PCOBJ) $$($(1)_AOBJ) $$($(1)_CPPAOBJ)
122 $(1)_SRC    := $$($(1)_CSRC) $$($(1)_CXXSRC) $$($(1)_PCSRC) $$($(1)_ASRC) $$($(1)_CPPASRC)
123 OBJ         += $$($(1)_OBJ)
124
125 ifneq ($$(strip $$($(1)_CXXSRC)),)
126 $(1)_LD = $$($(1)_CROSS)$$(LDXX)
127 else
128 $(1)_LD = $$($(1)_CROSS)$$(LD)
129 endif
130
131 # Compile: instructions to create assembler and/or object files from C source
132 $$($(1)_COBJ) : $$(OBJDIR)/$(1)/%.o : %.c
133         $L "$(1): Compiling $$< (C)"
134         @$$(MKDIR_P) $$(dir $$@)
135         $Q $$($(1)_CC) -c $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@
136
137 # Compile: instructions to create assembler and/or object files from C++ source
138 $$($(1)_CXXOBJ) : $$(OBJDIR)/$(1)/%.o : %.cpp
139         $L "$(1): Compiling $$< (C++)"
140         @$$(MKDIR_P) $$(dir $$@)
141         $Q $$($(1)_CXX) -c $$(CXXFLAGS) $$($(1)_CXXFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@
142
143 # Generate assembly sources from C files (debug)
144 $$(OBJDIR)/$(1)/%.s : %.c
145         $L "$(1): Generating asm source $$<"
146         @$$(MKDIR_P) $$(dir $$@)
147         $Q $$($(1)_CC) -S $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$< -o $$@
148
149 # Generate special progmem variant of a source file
150 $$($(1)_PCOBJ) : $$(OBJDIR)/$(1)/%_P.o : %.c
151         $L "$(1): Compiling $$< (PROGMEM)"
152         @$$(MKDIR_P) $$(dir $$@)
153         $Q $$($(1)_CC) -c -D_PROGMEM $$(CFLAGS) $$($(1)_CFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@
154
155 # Assemble: instructions to create object file from assembler files
156 $$($(1)_AOBJ): $$(OBJDIR)/$(1)/%.o : %.s
157         $L "$(1): Assembling $$<"
158         @$$(MKDIR_P) $$(dir $$@)
159         $Q $$($(1)_AS) -c $$(ASFLAGS) $$($(1)_ASFLAGS) $$< -o $$@
160
161 $$($(1)_CPPAOBJ): $$(OBJDIR)/$(1)/%.o : %.S
162         $L "$(1): Assembling with CPP $$<"
163         @$$(MKDIR_P) $$(dir $$@)
164         $Q $$($(1)_CC) -c $$(CPPAFLAGS) $$($(1)_CPPAFLAGS) $$($(1)_CPPFLAGS) $$(CPPFLAGS) $$< -o $$@
165
166
167 # Link: instructions to create elf output file from object files
168 $$(OUTDIR)/$(1).elf $$(OUTDIR)/$(1)_nostrip: bumprev $$($(1)_OBJ) $$($(1)_LDSCRIPT)
169         $L "$(1): Linking $$@"
170         @$$(MKDIR_P) $$(dir $$@)
171         $Q $$($(1)_LD) $$($(1)_OBJ) $$(LIB) $$(LDFLAGS) $$($(1)_LDFLAGS) -o $$@
172
173 # Strip debug info
174 $$(OUTDIR)/$(1): $$(OUTDIR)/$(1)_nostrip
175         $L "$(1): Generating stripped executable $$@"
176         $Q $$($(1)_STRIP) -o $$@ $$^
177
178 # Compile and link (program-at-a-time)
179 $$(OUTDIR)/$(1)_whole.elf: bumprev $$($(1)_SRC) $$($(1)_LDSCRIPT)
180         $L "$(1): Compiling and Linking whole program $$@"
181         @$$(MKDIR_P) $$(dir $$@)
182         $Q $$($(1)_CC) $$($(1)_SRC) $$(CFLAGS) $$($(1)_CFLAGS) $$(LIB) $$(LDFLAGS) $$($(1)_LDFLAGS) -o $$@
183
184 # Flash target
185 # NOTE: we retry in case of failure because the STK500 programmer is crappy
186 .PHONY: flash_$(1)
187 flash_$(1): $(OUTDIR)/$(1).s19 flash_$(1)_local
188         if ! $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U flash:w:$$< ; then \
189              $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U flash:w:$$< ; \
190         fi
191         #avarice --mkII -j usb --erase --program --verify --file images/triface.elf
192
193 .PHONY: flash_$(1)_local
194 flash_$(1)_local:
195
196 .PHONY: fuses_$(!)
197 fuses_$(1):
198         if [ ! -z "$$($(1)_efuse)" ] ; then \
199                 if ! $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U efuse:w:$$($(1)_efuse):m ; then \
200                      $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U efuse:w:$$($(1)_efuse):m ; \
201                 fi \
202         fi
203         if [ ! -z "$$($(1)_hfuse)" ] ; then \
204                 if ! $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U hfuse:w:$$($(1)_hfuse):m ; then \
205                      $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U hfuse:w:$$($(1)_hfuse):m ; \
206                 fi \
207         fi
208         if [ ! -z "$$($(1)_lfuse)" ] ; then \
209                 if ! $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U lfuse:w:$$($(1)_lfuse):m ; then \
210                      $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U lfuse:w:$$($(1)_lfuse):m ; \
211                 fi \
212         fi
213         if [ ! -z "$$($(1)_lock)" ] ; then \
214                 if ! $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U lock:w:$$($(1)_lock):m ; then \
215                      $(AVRDUDE) $(DPROG) -p $$($(1)_MCU) -U lock:w:$$($(1)_lock):m ; \
216                 fi \
217         fi
218
219 $$(OUTDIR)/$(1).hex: $$(OUTDIR)/$(1).elf
220         $$($(1)_OBJCOPY) -O ihex $$< $$@
221
222 $$(OUTDIR)/$(1).s19: $$(OUTDIR)/$(1).elf
223         $$($(1)_OBJCOPY) -O srec $$< $$@
224
225 $$(OUTDIR)/$(1).bin: $$(OUTDIR)/$(1).elf
226         $$($(1)_OBJCOPY) -O binary $$< $$@
227
228 $$(OUTDIR)/$(1).obj: $$(OUTDIR)/$(1).elf
229         $$($(1)_OBJCOPY) -O avrobj $$< $$@
230
231 $$(OUTDIR)/$(1).rom: $$(OUTDIR)/$(1).elf
232         $$($(1)_OBJCOPY) -O $$(FORMAT) $$< $$@
233 #       $$($(1)_OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" -O $$(FORMAT) $$< $$(@:.rom=.eep)
234
235 endef
236
237 # Generate build rules for all targets
238 $(foreach t,$(TRG),$(eval $(call build_target,$(t))))
239
240 # Generate Qt's moc files from headers
241 # NOTE: moc totally sucks and can generate empty files for some error conditions,
242 #       leading to puzzling linker errors.  Kill 'em and abort build.
243 %_moc.cpp: %.h
244         $(MOC) -o $@ $<
245         if [ ! -s $< ]; then \
246                 rm -f $@; \
247                 exit 1; \
248         fi
249
250
251 %.cof: %.elf
252         $(COFFCONVERT) -O coff-ext-avr $< $@
253 #       $(COFFCONVERT) -O coff-avr $< $@   # For use with AVRstudio 3
254
255 #make instruction to delete created files
256 cleanall: clean
257 clean: clean-recursive
258         -$(RM_R) $(OBJDIR)
259         -$(RM_R) $(OUTDIR)
260
261 $(RECURSIVE_TARGETS):
262         @target=`echo $@ | sed s/-recursive//`; \
263         for dir in $(SUBDIRS); do \
264                 if [ -e $$dir/configure.in ] || [ -e $$dir/configure.ac ] && [ ! -x $$dir/configure ]; then \
265                         echo "Running autogen.sh in $$dir..."; \
266                         ( cd $$dir && chmod a+x autogen.sh && ./autogen.sh && rm -f Makefile || exit 1 ); \
267                 fi; \
268                 if [ ! -e $$dir/Makefile ]; then \
269                         if [ -e "$$dir/build-$(ARCH)" ]; then \
270                                 echo "Running build script in $$dir..."; \
271                                 ( cd $$dir && chmod a+x build && ./build || exit 1 ); \
272                         else \
273                                 echo "Running configure in $$dir..."; \
274                                 ( cd $$dir && ./configure --prefix=$(PREFIX) || exit 1 ); \
275                         fi; \
276                 fi; \
277                 $(MAKE) -C $$dir $$target || exit 1; \
278         done
279
280 BUILDREV_H = buildrev.h
281
282 ifeq ($(shell [ -e bertos/verstag.c ] && echo yes),yes)
283 .PHONY: bumprev
284 bumprev:
285         @buildnr=0; \
286         if [ -f $(BUILDREV_H) ]; then \
287                 buildnr=`sed <"$(BUILDREV_H)" -n -e 's/#define VERS_BUILD \([0-9][0-9]*\)/\1/p'`; \
288         fi; \
289         buildnr=`expr $$buildnr + 1`; \
290         buildhost=`hostname | sed -n -e '1h;2,$$H;$${g;s/\n//g;p;}'`; \
291         echo "#define VERS_BUILD $$buildnr" >"$(BUILDREV_H)"; \
292         echo "#define VERS_HOST  \"$$buildhost\"" >>"$(BUILDREV_H)"; \
293         echo "Building revision $$buildnr"
294 else
295 .PHONY: bumprev
296 bumprev:
297
298 endif
299
300 # Include dependencies
301 ifneq ($(strip $(OBJ)),)
302 -include $(OBJ:%.o=%.d)
303 endif