with weaponary, steps forwards and crushes both warring factions in one swift movement. Using far superior weaponary and AI craft, the company was completely unstoppable and now no one can stand in their way. Thousands began to perish under the iron fist of the company. The people cried out for a saviour, for someone to light this dark hour... and someone did. PR: ports/83418 Submitted by: Alejandro Pulver <alejandro@varnet.biz>
25 lines
719 B
Text
25 lines
719 B
Text
--- makefile.orig Mon Aug 18 09:48:23 2003
|
|
+++ makefile Wed Jul 13 18:40:23 2005
|
|
@@ -7,9 +7,9 @@
|
|
PACK = starfighter.pak
|
|
DOCS = docs/*
|
|
|
|
-BINDIR = /usr/games/
|
|
-DATADIR = /usr/share/games/parallelrealities/
|
|
-DOCDIR = /usr/share/doc/starfighter/
|
|
+BINDIR = $(PREFIX)/bin/
|
|
+DATADIR = $(PREFIX)/share/$(PROG)/
|
|
+DOCDIR = $(PREFIX)/share/doc/$(PROG)/
|
|
# top-level rule to create the program.
|
|
all: $(PROG)
|
|
|
|
@@ -31,7 +31,5 @@
|
|
# install
|
|
install:
|
|
mkdir -p $(DATADIR)
|
|
- strip $(PROG)
|
|
- install -o root -g games -m 755 $(PROG) $(BINDIR)$(PROG)
|
|
- install -o root -g games -m 644 $(PACK) $(DATADIR)$(PACK)
|
|
- cp $(DOCS) $(DOCDIR)
|
|
+ $(BSD_INSTALL_PROGRAM) $(PROG) $(BINDIR)$(PROG)
|
|
+ $(BSD_INSTALL_DATA) $(PACK) $(DATADIR)$(PACK)
|