summaryrefslogtreecommitdiff
path: root/config.make
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2011-12-20 14:32:48 +0000
committerTim Redfern <tim@eclectronics.org>2011-12-20 14:32:48 +0000
commit643442a18323f563f75c20f32ef3488f68b74570 (patch)
treec3af777762e2b161bd9b58444e4661fac298c49a /config.make
initial show version
Diffstat (limited to 'config.make')
-rw-r--r--config.make34
1 files changed, 34 insertions, 0 deletions
diff --git a/config.make b/config.make
new file mode 100644
index 0000000..1b76a34
--- /dev/null
+++ b/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 = ../../..
+
+
+# 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 = -lportaudio
+
+
+# change this to add different compiler optimizations to your project
+
+USER_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os
+
+
+EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj"