Makefile 391 B

1234567891011121314
  1. # Attempt to load a config.make file.
  2. # If none is found, project defaults in config.project.make will be used.
  3. ifneq ($(wildcard config.make),)
  4. include config.make
  5. endif
  6. # make sure the the OF_ROOT location is defined
  7. ifndef OF_ROOT
  8. OF_ROOT=$(realpath ../../..)
  9. endif
  10. # call the project makefile!
  11. include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk