R. J. Dev. Kwan eb05416991 Initial commit of "Rocket Workbench".
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 *
2021-01-20 15:50:36 -08:00

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