summaryrefslogtreecommitdiff
path: root/gaunt01/config.make
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2012-03-21 00:15:04 +0000
committerTim Redfern <tim@eclectronics.org>2012-03-21 00:15:04 +0000
commit4f0fe0e5dd669f1fe65d9c9c17b8a546054a8717 (patch)
tree3f854a3d6d24e1cbde9db4c08e393c7efd36f06f /gaunt01/config.make
parentd1324e15200f944fc6d9ea7e0bf60ded109f6d29 (diff)
initial commit
Diffstat (limited to 'gaunt01/config.make')
-rw-r--r--gaunt01/config.make34
1 files changed, 34 insertions, 0 deletions
diff --git a/gaunt01/config.make b/gaunt01/config.make
new file mode 100644
index 0000000..702abf0
--- /dev/null
+++ b/gaunt01/config.make
@@ -0,0 +1,34 @@
+# add custom variables to this file
+
+# OF_ROOT allows to move projects outside apps/* just set this variable to the
+# absoulte path to the OF root folder
+
+OF_ROOT = ../../of_preRelease_v007_linux
+
+
+# USER_CFLAGS allows to pass custom flags to the compiler
+# for example search paths like:
+# USER_CFLAGS = -I src/objects
+
+USER_CFLAGS =
+
+
+# USER_LDFLAGS allows to pass custom flags to the linker
+# for example libraries like:
+# USER_LD_FLAGS = libs/libawesomelib.a
+
+USER_LDFLAGS =
+
+
+# use this to add system libraries for example:
+# USER_LIBS = -lpango
+
+USER_LIBS =
+
+
+# change this to add different compiler optimizations to your project
+
+USER_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os
+
+
+EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj"