DPF OpenGL examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
498B

  1. #!/usr/bin/make -f
  2. # Makefile for DPF examples #
  3. # ------------------------- #
  4. # Created by falkTX
  5. #
  6. include dpf/Makefile.base.mk
  7. all: libs examples
  8. # --------------------------------------------------------------
  9. libs:
  10. $(MAKE) -C dpf/dgl
  11. examples: libs
  12. $(MAKE) build -C examples
  13. # --------------------------------------------------------------
  14. clean:
  15. $(MAKE) clean -C dpf/dgl
  16. $(MAKE) clean -C examples
  17. # --------------------------------------------------------------
  18. .PHONY: examples