summaryrefslogtreecommitdiff
path: root/futuregael/Makefile
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2023-09-15 19:10:09 +0100
committerTim Redfern <tim@getdrop.com>2023-09-15 19:10:09 +0100
commit673ae8ef6bcaba87e25b94da30b4650d0fc8a424 (patch)
tree47baddf34f3ef19ac897f85754d08ac26abda330 /futuregael/Makefile
parent9ac6ff8bd3077533aa2758e4f0f36ceddafe2cf6 (diff)
initial commit
Diffstat (limited to 'futuregael/Makefile')
-rw-r--r--futuregael/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/futuregael/Makefile b/futuregael/Makefile
new file mode 100644
index 0000000..177e172
--- /dev/null
+++ b/futuregael/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