]> git.llucax.com Git - software/makeit.git/blobdiff - example/Config.mak
Update copyright notice to include Integratech S.A.
[software/makeit.git] / example / Config.mak
index c32caacfcbf84de94af581da9a2f08bfb47ccbff..e48599d9b4b3cc876bc5a516db912631e4bad345 100644 (file)
@@ -1,22 +1,4 @@
 
-# Use debug flavor by default
-F := dbg
-
-# C compiler
-CC := gcc
-
-# Use pre-compiled headers
-GCH := 1
-
-# Warn about everything
-override CPPFLAGS += -Wall
-override LDFLAGS += -Wall
-
-# Be standard compliant
-override CFLAGS += -std=c99 -pedantic
-override CXXFLAGS += -std=c++98 -pedantic
-
-
 # Flavors (variants) flags
 ##########################
 
@@ -33,3 +15,24 @@ override CPPFLAGS += -ggdb -pg --coverage
 override LDFLAGS += -pg --coverage
 endif
 
+# Common flags
+##############
+
+# Warn about everything
+override CPPFLAGS += -Wall
+override LDFLAGS += -Wall
+
+# Be standard compliant
+override CFLAGS += -std=c99 -pedantic
+override CXXFLAGS += -std=c++98 -pedantic
+
+# Other project configuration
+#############################
+
+# Use debug flavor by default
+F := dbg
+
+# Use pre-compiled headers
+GCH := 1
+
+