summaryrefslogtreecommitdiffstats
path: root/wump
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-03-28 14:39:02 -0400
committerCameron Katri <me@cameronkatri.com>2021-03-28 14:39:02 -0400
commit23454acb66be2a88647262d98d50e0f115519ea0 (patch)
treec593751ce3649be2e502fac3e080d6c0045b9fa0 /wump
parent08eca96e71d96ad1f8e9b888875ab5570f208d19 (diff)
downloadbsdgames-darwin-23454acb66be2a88647262d98d50e0f115519ea0.tar.gz
bsdgames-darwin-23454acb66be2a88647262d98d50e0f115519ea0.tar.zst
bsdgames-darwin-23454acb66be2a88647262d98d50e0f115519ea0.zip
Use PREFIX now
Diffstat (limited to 'wump')
-rw-r--r--wump/Makefile8
-rw-r--r--wump/pathnames.h6
2 files changed, 8 insertions, 6 deletions
diff --git a/wump/Makefile b/wump/Makefile
index 49ca6588..43bdc1da 100644
--- a/wump/Makefile
+++ b/wump/Makefile
@@ -5,17 +5,17 @@ PROG= wump
MAN= wump.6
SRCS= wump.c
FILES=wump.info
-FILESDIR=/usr/share/games
+FILESDIR=$(PREFIX)/share/games
all: $(PROG)
$(PROG): $(SRCS)
- $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
+ $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I$(ROOT)
$(STRIP) $(PROG)
install: $(PROG) $(MAN)
- $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/usr/games/$(PROG)
- $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN)
+ $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
+ $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
$(GINSTALL) -Dm644 $(FILES) $(DESTDIR)$(FILESDIR)
clean:
diff --git a/wump/pathnames.h b/wump/pathnames.h
index d3984f12..c1e99eb4 100644
--- a/wump/pathnames.h
+++ b/wump/pathnames.h
@@ -31,5 +31,7 @@
* @(#)pathnames.h 8.1 (Berkeley) 5/31/93
*/
-#define _PATH_PAGER "/usr/bin/more"
-#define _PATH_WUMPINFO "/usr/share/games/wump.info"
+#include "config.h"
+
+#define _PATH_PAGER PREFIX"/bin/more"
+#define _PATH_WUMPINFO PREFIX"/share/games/wump.info"