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.
 
 
 
 
 
 

31 lines
635 B

# --
# 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)
# --