Taken from sources in CVS at: https://sourceforge.net/projects/rocketworkbench/ Sources extracted in two steps: 1. Pull entire project tree into a subdir "rwb" via "rsync": rsync -a a.cvs.sourceforge.net::cvsroot/rocketworkbench/ rwb/. 2. Export sources: export CVSROOT=$(pwd)/rwb SUBDIRS="analyser cpropep cpropep-web CVSROOT data libcompat libcpropep libnum libsimulation libthermo prop rocketworkbench rockflight" mkdir rwbx; cd rwbx cvs export -D now ${SUBDIRS} After this (and some backups for safety), the directory content was added to a Git repo: git init . git add *
30 lines
738 B
Makefile
30 lines
738 B
Makefile
#
|
|
# 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
|