diff options
| author | Tim Redfern <redfernt@gmail.com> | 2023-09-15 19:58:21 +0100 |
|---|---|---|
| committer | Tim Redfern <redfernt@gmail.com> | 2023-09-15 19:58:21 +0100 |
| commit | ce815a746a91d0ac0fd7a883223fefe5cc07b339 (patch) | |
| tree | 2a380d635a28384e859bd37004ee6d83022a0a95 /futuregael/Makefile | |
| parent | 4d3b988b772882eca327e9754998913ed021c388 (diff) | |
| parent | 3b389388ae45857caa42130f8acf0aefedd12360 (diff) | |
Merge Sranch 'master' of ssh://192.168.15.218/Users/tim/Backup/git/raverony
Diffstat (limited to 'futuregael/Makefile')
| -rw-r--r-- | futuregael/Makefile | 13 |
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 |
