1997-03-31 11:27:27 +00:00
|
|
|
--- Makefile.orig Mon Mar 31 20:08:53 1997
|
|
|
|
+++ Makefile Mon Mar 31 20:08:53 1997
|
1997-03-04 09:35:21 +00:00
|
|
|
@@ -0,0 +1,17 @@
|
|
|
|
+# My makefile for Angband
|
|
|
|
+# Matthew Hunt <mph@pobox.com>
|
|
|
|
+
|
|
|
|
+all: angband
|
|
|
|
+
|
|
|
|
+angband:
|
|
|
|
+ cd src && make
|
|
|
|
+
|
|
|
|
+install: angband
|
1997-03-31 11:27:27 +00:00
|
|
|
+ install -c -o games -g bin -m 4755 testing ${PREFIX}/bin/angband
|
|
|
|
+ mkdir -p ${PREFIX}/lib/angband
|
|
|
|
+ (cd lib && tar cf - * ) | (cd ${PREFIX}/lib/angband && tar xf - )
|
|
|
|
+# install -c lib/* ${PREFIX}/lib/angband
|
|
|
|
+ /usr/sbin/chown -R games.bin ${PREFIX}/lib/angband
|
|
|
|
+ (cd ${PREFIX}/lib/angband && \
|
1997-03-04 09:35:21 +00:00
|
|
|
+ /bin/chmod 755 apex bone data edit file help info xtra && \
|
|
|
|
+ /bin/chmod 1777 save user )
|