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

22 lines
652 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 libnum test..."
@$(MAKE) --no-print-directory -C libnum all
@echo " Building libconvert test..."
@$(MAKE) --no-print-directory -C libconvert all
clean:
@echo " Cleaning libnum test..."
@$(MAKE) --no-print-directory -C libnum clean
@echo " Cleaning libconvert test..."
@$(MAKE) --no-print-directory -C libconvert clean
install:
@$(MAKE) --no-print-directory -C libnum install
@$(MAKE) --no-print-directory -C libconvert install