Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
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.

35 lines
671 B

  1. #
  2. # Makefile to build Debian package for Rocketworkbench utility suite
  3. # Written by Geoff O'Callaghan <geoff@starbiz.com.au>
  4. # Based on existing Makefile from Rocketworkbench project
  5. #
  6. #ROOT = $(PWD)
  7. #export ROOT
  8. .PHONY: all clean debug
  9. optimize: TYPE="optimize"
  10. optimize: all
  11. debug: TYPE="debug"
  12. debug: all
  13. profile: TYPE="profile"
  14. profile: all
  15. all:
  16. @mkdir -p lib
  17. @mkdir -p bin
  18. @echo "Building sources in" $(TYPE) "mode."
  19. @$(MAKE) --no-print-directory -C source all
  20. clean:
  21. @echo "Cleaning sources..."
  22. @$(MAKE) --no-print-directory -C source clean
  23. @echo "...done"
  24. @rm -f lib/*
  25. @rm -f bin/*
  26. install: all
  27. @$(MAKE) --no-print-directory -C source install