Exclude file with Qt-style documentation.
[bertos.git] / config.mk
index f1a8747d9dce36d06114ec982c367ca07fd19a84..dd3128d3bd5f55b3edef79b24d42d8e157545f23 100755 (executable)
--- a/config.mk
+++ b/config.mk
 # Author: Bernardo Innocenti <bernie@develer.com>
 #
 # $Log$
+# Revision 1.7  2006/07/19 12:56:24  bernie
+# Convert to new Doxygen style.
+#
+# Revision 1.6  2006/06/12 22:05:09  marco
+# Bring back config wrongly commited
+#
+# Revision 1.4  2006/05/27 22:41:46  bernie
+# Tweak optimization flags for loops.
+#
 # Revision 1.3  2006/05/18 00:40:10  bernie
 # Setup for AVR development.
 #
@@ -30,17 +39,19 @@ DPROG = -V -c stk500 -P /dev/ttyS0
 # STK200 parallel cable
 #DPROG = -c stk200 -E noreset
 
+# JTAG ICE mkII
+#DPROG = avarice --mkII -j usb -l
+
 # PonyProg serial programmer
 #DPROG = -c dasa2
 
-#OPTCFLAGS = -O3 # DANGER - DO NOT USE - DOESN'T WORK WITH 3.4.1 & 3.5 (HEAD)
-OPTCFLAGS = -ffunction-sections -fdata-sections 
+OPTCFLAGS = -ffunction-sections -fdata-sections -funsafe-loop-optimizations
 
 # For AVRStudio
 #DEBUGCFLAGS = -gdwarf-2
 
 # For GDB
-#DEBUGCFLAGS = -g
+DEBUGCFLAGS = -ggdb
 
 #
 # define some variables based on the AVR base path in $(AVR)
@@ -92,7 +103,8 @@ WARNFLAGS = \
        -W -Wformat -Wall -Wundef -Wpointer-arith -Wcast-qual \
        -Wcast-align -Wwrite-strings -Wsign-compare \
        -Wmissing-prototypes -Wmissing-noreturn \
-       -Wextra -Wstrict-aliasing=2
+       -Wextra -Wstrict-aliasing=2 \
+       -Wunsafe-loop-optimizations
 
 # Compiler warning flags for C only
 C_WARNFLAGS = \