aboutsummaryrefslogtreecommitdiffstats
path: root/ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile
diff options
context:
space:
mode:
authormick grierson <mickgrierson@gmail.com>2015-09-22 09:21:43 +0100
committermick grierson <mickgrierson@gmail.com>2015-09-22 09:21:43 +0100
commit5be3472f0f61d2e479f42759fed6fafd2a0e739a (patch)
tree49f128d4b56d43b3499ffd824b57b7f8b8d8345a /ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile
parentc814dd99dc3c347914c2057b77d1390ba41cfae5 (diff)
more work for kadenze mooc
Diffstat (limited to 'ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile')
-rw-r--r--ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile b/ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile
new file mode 100644
index 0000000..7a7fe8b
--- /dev/null
+++ b/ofxMaxim/openFrameworksExamples/OSX/emptyExample/Makefile
@@ -0,0 +1,13 @@
+# Attempt to load a config.make file.
+# If none is found, project defaults in config.project.make will be used.
+ifneq ($(wildcard config.make),)
+ include config.make
+endif
+
+# make sure the the OF_ROOT location is defined
+ifndef OF_ROOT
+ OF_ROOT=../../..
+endif
+
+# call the project makefile!
+include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk