-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
13 lines (11 loc) · 791 Bytes
/
Makefile
File metadata and controls
13 lines (11 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
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 ../../../Downloads/of_v0.9.8_osx_release/Downloads/of_v0.9.8_osx_release/../../../Downloads/of_v0.9.8_osx_release/Downloads/of_v0.9.8_osx_release/../Applications/of_v0.9.8_osx_release/../../../Downloads/of_v0.9.8_osx_release/Downloads/of_v0.9.8_osx_release/../../../Downloads/of_v0.9.8_osx_release/Downloads/of_v0.9.8_osx_release/../Applications/of_v0.9.8_osx_release/../Applications/of_v0.9.8_osx_release)
endif
# call the project makefile!
include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk