summaryrefslogtreecommitdiff
path: root/nextus/Makefile
diff options
context:
space:
mode:
authorTim Redfern <redfernt@gmail.com>2023-04-17 09:11:37 +0100
committerTim Redfern <redfernt@gmail.com>2023-04-17 09:11:37 +0100
commit94c9aaaab09956efc4117e268cd35fbdcd352e61 (patch)
tree28d6db0f2da6cdacd2c4fc67c4495798d2b1e1b1 /nextus/Makefile
parent64da9187c2b2996c5c9493e23df86528eae77ee4 (diff)
parentf140c2822b7b3798d86798f8b300f9a0d133259f (diff)
better
Diffstat (limited to 'nextus/Makefile')
-rw-r--r--nextus/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/nextus/Makefile b/nextus/Makefile
new file mode 100644
index 0000000..177e172
--- /dev/null
+++ b/nextus/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