summaryrefslogtreecommitdiffstats
path: root/hack/Makefile
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1993-03-21 09:45:37 +0000
committercgd <cgd@NetBSD.org>1993-03-21 09:45:37 +0000
commit77e3814f0c0e3dea4d0032e25666f77e6f83bfff (patch)
tree7eddfcbf3dd12089e71dc3fafb0a106c5c5766c7 /hack/Makefile
parente81d63576b2e46ab90da7d75fa155ea57ee4d32e (diff)
downloadbsdgames-darwin-77e3814f0c0e3dea4d0032e25666f77e6f83bfff.tar.gz
bsdgames-darwin-77e3814f0c0e3dea4d0032e25666f77e6f83bfff.tar.zst
bsdgames-darwin-77e3814f0c0e3dea4d0032e25666f77e6f83bfff.zip
initial import of 386bsd-0.1 sources
Diffstat (limited to 'hack/Makefile')
-rw-r--r--hack/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/hack/Makefile b/hack/Makefile
new file mode 100644
index 00000000..a037ad27
--- /dev/null
+++ b/hack/Makefile
@@ -0,0 +1,35 @@
+# @(#)Makefile 5.10 (Berkeley) 12/8/90
+
+PROG= hack
+SRCS= alloc.c hack.Decl.c hack.apply.c hack.bones.c hack.c hack.cmd.c \
+ hack.do.c hack.do_name.c hack.do_wear.c hack.dog.c hack.eat.c \
+ hack.end.c hack.engrave.c hack.fight.c hack.invent.c hack.ioctl.c \
+ hack.lev.c hack.main.c hack.makemon.c hack.mhitu.c hack.mklev.c \
+ hack.mkmaze.c hack.mkobj.c hack.mkshop.c hack.mon.c hack.monst.c \
+ hack.o_init.c hack.objnam.c hack.options.c hack.pager.c hack.potion.c \
+ hack.pri.c hack.read.c hack.rip.c hack.rumors.c hack.save.c \
+ hack.search.c hack.shk.c hack.shknam.c hack.steal.c hack.termcap.c \
+ hack.timeout.c hack.topl.c hack.track.c hack.trap.c hack.tty.c \
+ hack.u_init.c hack.unix.c hack.vault.c hack.version.c hack.wield.c \
+ hack.wizard.c hack.worm.c hack.worn.c hack.zap.c rnd.c
+MAN6= hack.0
+DPADD= ${LIBTERM} ${LIBCOMPAT}
+LDADD= -ltermcap -lcompat
+HIDEGAME=hidegame
+
+hack.onames.h: makedefs def.objects.h
+ makedefs ${.CURDIR}/def.objects.h > hack.onames.h
+
+makedefs: makedefs.c
+ ${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${.PREFIX}.c
+
+beforeinstall:
+ install -c -o ${BINOWN} -g ${BINGRP} -m 666 /dev/null \
+ ${DESTDIR}/var/games/hackdir/perm
+ install -c -o ${BINOWN} -g ${BINGRP} -m 666 /dev/null \
+ ${DESTDIR}/var/games/hackdir/record
+ install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/help \
+ ${.CURDIR}/hh ${.CURDIR}/data ${DESTDIR}/var/games/hackdir
+ rm -f ${DESTDIR}/var/games/hackdir/bones*
+
+.include <bsd.prog.mk>