X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=config.mk;h=a7bf757fa88f8f7ee7ec131f88cbd55c8be2ee94;hb=5f3952176a4e9a00ca8dd5ec4a6b994958f89e0a;hp=dd3128d3bd5f55b3edef79b24d42d8e157545f23;hpb=bcf38f772b397e7a8ba781a69aacb9380e54b32a;p=bertos.git diff --git a/config.mk b/config.mk old mode 100755 new mode 100644 index dd3128d3..a7bf757f --- a/config.mk +++ b/config.mk @@ -10,6 +10,21 @@ # Author: Bernardo Innocenti # # $Log$ +# Revision 1.12 2007/09/29 16:57:39 bernie +# Better sparse support. +# +# Revision 1.11 2007/09/29 15:54:14 bernie +# Make demo Qt emulator compile again. +# +# Revision 1.10 2007/09/18 10:17:00 batt +# Merge from triface. +# +# Revision 1.9 2006/09/20 14:28:42 marco +# Add MOC. Changed OPTCFLAGS. +# +# Revision 1.8 2006/09/19 17:50:56 bernie +# Make native build the default. +# # Revision 1.7 2006/07/19 12:56:24 bernie # Convert to new Doxygen style. # @@ -32,9 +47,14 @@ # # Programmer type -# +# see local pgm_config.mk for programmer customization. +-include pgm_config.mk +DPROG ?= -V -c stk500 -P /dev/ttyS0 + # AVR ISP dongle that blows up easily -DPROG = -V -c stk500 -P /dev/ttyS0 +#DPROG = -V -c stk500 -P /dev/ttyS0 +#DPROG = -V -c jtag2slow +#-P /dev/ttyUSB0 # STK200 parallel cable #DPROG = -c stk200 -E noreset @@ -45,7 +65,8 @@ DPROG = -V -c stk500 -P /dev/ttyS0 # PonyProg serial programmer #DPROG = -c dasa2 -OPTCFLAGS = -ffunction-sections -fdata-sections -funsafe-loop-optimizations +OPTCFLAGS = -ffunction-sections -fdata-sections +#OPTCFLAGS = -funsafe-loop-optimizations # For AVRStudio #DEBUGCFLAGS = -gdwarf-2 @@ -56,16 +77,23 @@ DEBUGCFLAGS = -ggdb # # define some variables based on the AVR base path in $(AVR) # -CROSS = avr- +CROSS = #avr- CC = $(CROSS)gcc +CXX = $(CROSS)g++ AS = $(CC) -x assembler-with-cpp LD = $(CC) OBJCOPY = $(CROSS)objcopy +STRIP = $(CROSS)strip INSTALL = cp -a RM = rm -f RM_R = rm -rf RN = mv MKDIR_P = mkdir -p +SHELL = /bin/sh +CHECKER = sparse +DOXYGEN = doxygen +AVRDUDE = avrdude +FLEXCAT = $(top_srcdir)/tools/flexcat/flexcat # For conversion from ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB. COFFCONVERT=$(OBJCOPY) \ @@ -79,11 +107,6 @@ INCDIR = -I. -Ihw LIBDIR = lib OBJDIR = obj OUTDIR = images -SHELL = /bin/sh -DOXYGEN = doxygen -UISP = uisp -AVRDUDE = avrdude -FLEXCAT = $(top_srcdir)/tools/flexcat/flexcat # output format can be srec, ihex (avrobj is always created) FORMAT = srec @@ -96,26 +119,30 @@ DEP_FLAGS = -MMD -MP LIST_FLAGS = -Wa,-anhlmsd=$(@:.o=.lst) # Linker flags for generating map files -MAP_FLAGS = -Wl,-Map=$(@:%.elf=%.map),--cref +#bernie: bogus binutils from Fedora 6 can't cope with this +#MAP_FLAGS = -Wl,-Map=$(@:%.elf=%.map),--cref # Compiler warning flags for both C and C++ WARNFLAGS = \ -W -Wformat -Wall -Wundef -Wpointer-arith -Wcast-qual \ -Wcast-align -Wwrite-strings -Wsign-compare \ - -Wmissing-prototypes -Wmissing-noreturn \ + -Wmissing-noreturn \ -Wextra -Wstrict-aliasing=2 \ - -Wunsafe-loop-optimizations +# -Wunsafe-loop-optimizations # Compiler warning flags for C only C_WARNFLAGS = \ -Wmissing-prototypes -Wstrict-prototypes +# Default C preprocessor flags (for C, C++ and cpp+as) +CPPFLAGS = $(INCDIR) + # Default C compiler flags -CFLAGS = $(INCDIR) $(OPTCFLAGS) $(DEBUGCFLAGS) $(WARNFLAGS) $(C_WARNFLAGS) \ +CFLAGS = $(OPTCFLAGS) $(DEBUGCFLAGS) $(WARNFLAGS) $(C_WARNFLAGS) \ $(DEP_FLAGS) $(LIST_FLAGS) -std=gnu99 # Default C++ compiler flags -CXXFLAGS = $(INCDIR) $(OPTCFLAGS) $(DEBUGCFLAGS) $(WARNFLAGS) \ +CXXFLAGS = $(OPTCFLAGS) $(DEBUGCFLAGS) $(WARNFLAGS) \ $(DEP_FLAGS) $(LIST_FLAGS) # Default compiler assembly flags @@ -128,7 +155,7 @@ ASFLAGS = $(DEBUGCFLAGS) #LDFLAGS = $(MAP_FLAGS) #bernie: does not complain for missing symbols! -#LDFLAGS = $(MAP_FLAGS) -Wl,--gc-sections +LDFLAGS = $(MAP_FLAGS) -Wl,--gc-sections # Flags for avrdude AVRDUDEFLAGS = $(DPROG)