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.

21 lines
652 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 libnum test..."
  8. @$(MAKE) --no-print-directory -C libnum all
  9. @echo " Building libconvert test..."
  10. @$(MAKE) --no-print-directory -C libconvert all
  11. clean:
  12. @echo " Cleaning libnum test..."
  13. @$(MAKE) --no-print-directory -C libnum clean
  14. @echo " Cleaning libconvert test..."
  15. @$(MAKE) --no-print-directory -C libconvert clean
  16. install:
  17. @$(MAKE) --no-print-directory -C libnum install
  18. @$(MAKE) --no-print-directory -C libconvert install