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

  1. # --
  2. # DESTDIR is the place we want to install into 'prefix'
  3. # BIN is where our executables go
  4. # DATA is where the program data go
  5. # CONF is where the program config files go
  6. # (note: This was added for Debian build, but should work ok on other
  7. # platforms - goc)
  8. DESTDIR=
  9. BIN=$(DESTDIR)/usr/bin
  10. DATA=$(DESTDIR)/usr/share/rocketworkbench/cpropep
  11. CONF=$(DESTDIR)/etc/rocketworkbench
  12. # --
  13. all:
  14. clean:
  15. deep-clean: clean
  16. # --
  17. # Install rules added for Debian build - should be ok on other platforms (goc)
  18. # --
  19. install: all
  20. install -d $(DATA)
  21. install -m 0644 propellant.dat $(DATA)
  22. install -m 0644 thermo.dat $(DATA)
  23. # --