From 99022db86e54c3338d6a670f219a0845fd531530 Mon Sep 17 00:00:00 2001 From: Alex Dunn Date: Mon, 6 Apr 2015 15:01:07 -0400 Subject: [PATCH 1/1] Second band of previously mangled patch... ...it's now complete. --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d6a6335..11ce3e0 100644 --- a/Makefile +++ b/Makefile @@ -29,12 +29,14 @@ wumpus.html: wumpus.xml SOURCES = README COPYING NEWS Makefile wumpus.c superhack.c wumpus.xml install: wumpus.6 - cp wumpus superhack /usr/bin/ - cp wumpus.6 /usr/share/man/man6/ + mkdir -p $(prefix)/bin + mkdir -p $(prefix)/share/man/man6 + cp wumpus superhack $(prefix)/bin/ + cp wumpus.6 $(prefix)/share/man/man6/ uninstall: - rm /usr/bin/wumpus /usr/bin/superhack - rm /usr/share/man/man6/wumpus.6 + rm $(prefix)/bin/wumpus $(prefix)/bin/superhack + rm $(prefix)/share/man/man6/wumpus.6 CPPCHECKOPTS = cppcheck: -- 2.31.1