We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9f030 commit e2f4486Copy full SHA for e2f4486
Makefile
@@ -6,6 +6,9 @@ BINDIR = /usr/games
6
# Where to install the data file
7
LIBDIR = /usr/games/lib
8
9
+# Where to install the man page
10
+MANDIR = /usr/share/man
11
+
12
# The dungeon program provides a ``more'' facility which tries to
13
# figure out how many rows the terminal has. Several mechanisms are
14
# supported for determining this; the most common one has been left
@@ -69,6 +72,7 @@ install: zork dtextc.dat
69
72
mkdir -p $(BINDIR) $(LIBDIR)
70
73
cp zork $(BINDIR)
71
74
cp dtextc.dat $(LIBDIR)
75
+ cp dungeon.6 $(MANDIR)/man6/
76
77
clean:
78
rm -f $(OBJS) zork core dsave.dat *~
0 commit comments