diff options
| author | tim <tim@eclectronics.org> | 2017-03-21 22:10:44 +0000 |
|---|---|---|
| committer | tim <tim@eclectronics.org> | 2017-03-21 22:10:44 +0000 |
| commit | d96c5943f817e63be4a3edb6ed3dfd33b919bd7a (patch) | |
| tree | 15ad2ca6f22decff78b252aede937092a1dac0e4 /menuApp/Makefile | |
initial commit
Diffstat (limited to 'menuApp/Makefile')
| -rw-r--r-- | menuApp/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/menuApp/Makefile b/menuApp/Makefile new file mode 100644 index 0000000..8d8e4c0 --- /dev/null +++ b/menuApp/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 |
