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.

26 lines
468B

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