Remove cvs logs.
[bertos.git] / config.mk
1 #
2 # $Id$
3 # Copyright 2002,2003, 2004, 2006 Develer S.r.l. (http://www.develer.com/)
4 # All rights reserved.
5 #
6 # Based on:
7 #   GCC-AVR standard Makefile part 1
8 #   Volker Oth 1/2000
9 #
10 # Author: Bernardo Innocenti <bernie@develer.com>
11 #
12 # $Log$
13 #
14
15 #
16 # Programmer type
17 # see local pgm_config.mk for programmer customization.
18 -include pgm_config.mk
19 DPROG ?= -V -c stk500 -P /dev/ttyS0
20
21 # AVR ISP dongle that blows up easily
22 #DPROG = -V -c stk500 -P /dev/ttyS0
23 #DPROG = -V -c jtag2slow
24 #-P /dev/ttyUSB0
25
26 # STK200 parallel cable
27 #DPROG = -c stk200 -E noreset
28
29 # JTAG ICE mkII
30 #DPROG = avarice --mkII -j usb -l
31
32 # PonyProg serial programmer
33 #DPROG = -c dasa2
34
35 # Set to 1 to build for embedded devices.
36 # e.g. produce target.elf instead of target and target_nostrip
37 EMBEDDED_TARGET = 1
38 #EMBEDDED_TARGET = 0
39
40 OPTCFLAGS = -ffunction-sections -fdata-sections
41 #OPTCFLAGS = -funsafe-loop-optimizations
42
43 # For AVRStudio
44 #DEBUGCFLAGS = -gdwarf-2
45
46 # For GDB
47 DEBUGCFLAGS = -ggdb
48
49 #
50 # define some variables based on the AVR base path in $(AVR)
51 #
52 CROSS   = avr-
53 CC      = $(CROSS)gcc
54 CXX     = $(CROSS)g++
55 AS      = $(CC) -x assembler-with-cpp
56 LD      = $(CC)
57 OBJCOPY = $(CROSS)objcopy
58 STRIP   = $(CROSS)strip
59 INSTALL = cp -a
60 RM      = rm -f
61 RM_R    = rm -rf
62 RN      = mv
63 MKDIR_P = mkdir -p
64 SHELL   = /bin/sh
65 CHECKER = sparse
66 DOXYGEN = doxygen
67 AVRDUDE = avrdude
68 FLEXCAT = $(top_srcdir)/tools/flexcat/flexcat
69
70 # For conversion from ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
71 COFFCONVERT=$(OBJCOPY) \
72         --debugging \
73         --change-section-address .data-0x800000 \
74         --change-section-address .bss-0x800000 \
75         --change-section-address .noinit-0x800000 \
76         --change-section-address .eeprom-0x810000
77
78 INCDIR  = -I. -Ihw
79 LIBDIR  = lib
80 OBJDIR  = obj
81 OUTDIR  = images
82
83 # output format can be srec, ihex (avrobj is always created)
84 FORMAT = srec
85 #FORMAT = ihex
86
87 # Compiler flags for generating dependencies
88 DEP_FLAGS = -MMD -MP
89
90 # Compiler flags for generating source listings
91 LIST_FLAGS = -Wa,-anhlmsd=$(@:.o=.lst)
92
93 # Linker flags for generating map files
94 ifeq ($(EMBEDDED_TARGET), 1)
95 MAP_FLAGS = -Wl,-Map=$(@:%.elf=%.map),--cref
96 else
97 MAP_FLAGS =
98 endif
99
100 # Compiler warning flags for both C and C++
101 WARNFLAGS = \
102         -W -Wformat -Wall -Wundef -Wpointer-arith -Wcast-qual \
103         -Wcast-align -Wwrite-strings -Wsign-compare \
104         -Wmissing-noreturn \
105         -Wextra -Wstrict-aliasing=2 \
106 #       -Wunsafe-loop-optimizations
107
108 # Compiler warning flags for C only
109 C_WARNFLAGS = \
110         -Wmissing-prototypes -Wstrict-prototypes
111
112 # Default C preprocessor flags (for C, C++ and cpp+as)
113 CPPFLAGS = $(INCDIR)
114
115 # Default C compiler flags
116 CFLAGS = $(OPTCFLAGS) $(DEBUGCFLAGS) $(WARNFLAGS) $(C_WARNFLAGS) \
117         $(DEP_FLAGS) $(LIST_FLAGS) -std=gnu99
118
119 # Default C++ compiler flags
120 CXXFLAGS = $(OPTCFLAGS) $(DEBUGCFLAGS) $(WARNFLAGS) \
121         $(DEP_FLAGS) $(LIST_FLAGS)
122
123 # Default compiler assembly flags
124 CPPAFLAGS = $(DEBUGCFLAGS) -MMD
125
126 # Default assembler flags
127 ASFLAGS = $(DEBUGCFLAGS)
128
129 # Default linker flags
130 #LDFLAGS = $(MAP_FLAGS)
131
132 #bernie: does not complain for missing symbols!
133 LDFLAGS = $(MAP_FLAGS) -Wl,--gc-sections
134
135 # Flags for avrdude
136 AVRDUDEFLAGS = $(DPROG)
137
138 # additional libs
139 LIB = -lm