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

#
# Makefile to build Debian package for Rocketworkbench utility suite
# Written by Geoff O'Callaghan <geoff@starbiz.com.au>
# Based on existing Makefile from Rocketworkbench project
#
all:
@echo " Building libraries..."
@$(MAKE) -C libraries all
@echo " Building executables..."
@$(MAKE) -C executables all
@echo " Building libraries test..."
@$(MAKE) -C libtests all
clean:
@echo " Cleaning libraries..."
@$(MAKE) -C libraries clean
@echo " ...done"
@echo " Cleaning executables..."
@$(MAKE) -C executables clean
@echo " ...done"
@echo " Cleaning libraries test..."
@$(MAKE) -C libtests clean
@echo " ...done"
install: all
@$(MAKE) -C libraries install
@$(MAKE) -C executables install
@$(MAKE) -C libtests install