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 *
		
	
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			635 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			635 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# --
 | 
						|
# DESTDIR is the place we want to install into 'prefix'
 | 
						|
# BIN is where our executables go
 | 
						|
# DATA is where the program data go
 | 
						|
# CONF is where the program config files go
 | 
						|
# (note: This was added for Debian build, but should work ok on other
 | 
						|
#        platforms - goc)
 | 
						|
 | 
						|
DESTDIR=
 | 
						|
BIN=$(DESTDIR)/usr/bin
 | 
						|
DATA=$(DESTDIR)/usr/share/rocketworkbench/cpropep
 | 
						|
CONF=$(DESTDIR)/etc/rocketworkbench
 | 
						|
 | 
						|
# --
 | 
						|
 | 
						|
all:
 | 
						|
 | 
						|
clean:
 | 
						|
 | 
						|
deep-clean: clean
 | 
						|
 | 
						|
# --
 | 
						|
# Install rules added for Debian build - should be ok on other platforms (goc)
 | 
						|
# --
 | 
						|
 | 
						|
install:	all
 | 
						|
	install -d $(DATA)
 | 
						|
	install -m 0644 propellant.dat $(DATA)
 | 
						|
	install -m 0644 thermo.dat $(DATA)
 | 
						|
 | 
						|
# --
 |