summaryrefslogtreecommitdiff
path: root/menuApp/Makefile
diff options
context:
space:
mode:
authortim <tim@eclectronics.org>2017-03-21 22:10:44 +0000
committertim <tim@eclectronics.org>2017-03-21 22:10:44 +0000
commitd96c5943f817e63be4a3edb6ed3dfd33b919bd7a (patch)
tree15ad2ca6f22decff78b252aede937092a1dac0e4 /menuApp/Makefile
initial commit
Diffstat (limited to 'menuApp/Makefile')
-rw-r--r--menuApp/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/menuApp/Makefile b/menuApp/Makefile
new file mode 100644
index 0000000..8d8e4c0
--- /dev/null
+++ b/menuApp/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=$(realpath ../../..)
+endif
+
+# call the project makefile!
+include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk