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.

29 lines
738 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. all:
  7. @echo " Building libraries..."
  8. @$(MAKE) -C libraries all
  9. @echo " Building executables..."
  10. @$(MAKE) -C executables all
  11. @echo " Building libraries test..."
  12. @$(MAKE) -C libtests all
  13. clean:
  14. @echo " Cleaning libraries..."
  15. @$(MAKE) -C libraries clean
  16. @echo " ...done"
  17. @echo " Cleaning executables..."
  18. @$(MAKE) -C executables clean
  19. @echo " ...done"
  20. @echo " Cleaning libraries test..."
  21. @$(MAKE) -C libtests clean
  22. @echo " ...done"
  23. install: all
  24. @$(MAKE) -C libraries install
  25. @$(MAKE) -C executables install
  26. @$(MAKE) -C libtests install