Polished gdb support, etc
[simavr] / Makefile.common
1 #
2 # This makefile take each "at*" file, extracts it's part name
3 # And compile it into an ELF binary.
4 # It also disassemble it for debugging purposes.
5
6 # The code is compiled "optimized" to the max.
7
8 # The wierd "-Wl,--undefined=_mmcu,--section-start=.mmcu=0x910000"
9 # is used to tell the linker not to discard the .mmcu section,
10 # otherwise the --gc-sections will delete it.
11
12 #       Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
13 #
14 #       This file is part of simavr.
15 #
16 #       simavr is free software: you can redistribute it and/or modify
17 #       it under the terms of the GNU General Public License as published by
18 #       the Free Software Foundation, either version 3 of the License, or
19 #       (at your option) any later version.
20 #
21 #       simavr is distributed in the hope that it will be useful,
22 #       but WITHOUT ANY WARRANTY; without even the implied warranty of
23 #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 #       GNU General Public License for more details.
25 #
26 #       You should have received a copy of the GNU General Public License
27 #       along with simavr.  If not, see <http://www.gnu.org/licenses/>.
28
29 %.hex: %.axf
30                 @${AVR}objcopy -j .text -j .data -O ihex ${<} ${@}
31
32 %.s: %.axf
33                 @${AVR}objdump -j .text -j .data -j .bss -d  ${<} > ${@}
34
35 # --mcall-prologues 
36 %.axf: %.c 
37                 @echo CC ${<}
38                 @part=${<} ; part=$${part/_*}; \
39                 ${AVR}gcc -Wall -gdwarf-2 -Os -std=gnu99 \
40                                 -mmcu=$$part \
41                                 -DF_CPU=8000000 \
42                                 -fno-inline-small-functions \
43                                 -ffunction-sections -fdata-sections \
44                                 -Wl,--relax,--gc-sections \
45                                 -Wl,--undefined=_mmcu,--section-start=.mmcu=0x910000 \
46                                 -I../include \
47                                 ${<} -o ${@}
48                 @${AVR}size ${@}|sed '1d'