diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-01-17 00:15:21 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-01-17 00:15:21 +0000 |
| commit | 84b99181e804430acedb94ba848a801ffc33e15a (patch) | |
| tree | 71492826404c3aa8a5841d3bb2614b9912e9e85f /drawing/Makefile | |
initial commit
Diffstat (limited to 'drawing/Makefile')
| -rw-r--r-- | drawing/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drawing/Makefile b/drawing/Makefile new file mode 100644 index 0000000..177e172 --- /dev/null +++ b/drawing/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 |
