summaryrefslogtreecommitdiffstats
path: root/wtf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'wtf/Makefile')
-rw-r--r--wtf/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/wtf/Makefile b/wtf/Makefile
index fd0c94bd..b5c694e8 100644
--- a/wtf/Makefile
+++ b/wtf/Makefile
@@ -1,7 +1,12 @@
# $NetBSD: Makefile,v 1.1 1999/07/22 01:03:20 mrg Exp $
SCRIPTS= wtf
-SCRIPTSDIR= /usr/games
MAN= wtf.6
-.include <bsd.prog.mk>
+all:
+
+install: $(MAN) $(SCRIPTS)
+ $(GINSTALL) -Dm755 $(SCRIPTS) $(DESTDIR)/usr/games/$(basename $(SCRIPTS))
+ $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN)
+
+.PHONY: all install clean