diff options
| author | Tim Redfern <tim@getdrop.com> | 2017-08-27 13:19:47 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2017-08-27 13:19:47 +0100 |
| commit | d8a46a6409286b3834bc609e4f34a09d48a8ae58 (patch) | |
| tree | ba808c1648c908c5363b762541557ea649b12f27 /imgtest/Makefile | |
initial commit
Diffstat (limited to 'imgtest/Makefile')
| -rw-r--r-- | imgtest/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/imgtest/Makefile b/imgtest/Makefile new file mode 100644 index 0000000..177e172 --- /dev/null +++ b/imgtest/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 |
