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

#
# 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
#
#ROOT = $(PWD)
#export ROOT
.PHONY: all clean debug
optimize: TYPE="optimize"
optimize: all
debug: TYPE="debug"
debug: all
profile: TYPE="profile"
profile: all
all:
@mkdir -p lib
@mkdir -p bin
@echo "Building sources in" $(TYPE) "mode."
@$(MAKE) --no-print-directory -C source all
clean:
@echo "Cleaning sources..."
@$(MAKE) --no-print-directory -C source clean
@echo "...done"
@rm -f lib/*
@rm -f bin/*
install: all
@$(MAKE) --no-print-directory -C source install