summaryrefslogtreecommitdiff
path: root/oscReceiveExample/Makefile
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2018-12-12 01:17:00 +0000
committerTim Redfern <tim@getdrop.com>2018-12-12 01:17:00 +0000
commit983d4a8a596a680edc9a1bc78a6b5b61b6486be5 (patch)
tree12c7616bd326fb773d61b843b52ee1c8961ecebf /oscReceiveExample/Makefile
parentd59dff2cc79b63962009786cc19223fa5a197757 (diff)
mame vector receiver
Diffstat (limited to 'oscReceiveExample/Makefile')
-rw-r--r--oscReceiveExample/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/oscReceiveExample/Makefile b/oscReceiveExample/Makefile
new file mode 100644
index 0000000..177e172
--- /dev/null
+++ b/oscReceiveExample/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