summaryrefslogtreecommitdiffstats
path: root/hack/Makefile
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1997-10-22 05:24:11 +0000
committerlukem <lukem@NetBSD.org>1997-10-22 05:24:11 +0000
commita9ae47d539de206bc9bd7985a253d728a5c3fefc (patch)
tree57660e41e396c9f8e54a4d32b4aa2c7c18811372 /hack/Makefile
parent0656dcb8aac7c8a1749e0364ffab56538bba1f79 (diff)
downloadbsdgames-darwin-a9ae47d539de206bc9bd7985a253d728a5c3fefc.tar.gz
bsdgames-darwin-a9ae47d539de206bc9bd7985a253d728a5c3fefc.tar.zst
bsdgames-darwin-a9ae47d539de206bc9bd7985a253d728a5c3fefc.zip
use CPPFLAGS instead of CFLAGS, fix dependancies for parallel compile
Diffstat (limited to 'hack/Makefile')
-rw-r--r--hack/Makefile20
1 files changed, 16 insertions, 4 deletions
diff --git a/hack/Makefile b/hack/Makefile
index 86095851..7cbb4fba 100644
--- a/hack/Makefile
+++ b/hack/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.24 1997/10/19 16:56:41 christos Exp $
+# $NetBSD: Makefile,v 1.25 1997/10/22 05:24:11 lukem Exp $
# @(#)Makefile 8.2 (Berkeley) 4/27/95
PROG= hack
-CFLAGS+=-I.
+CPPFLAGS+=-I.
SRCS+= hack.onames.h
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 \
@@ -23,11 +23,23 @@ CLEANFILES+=hack.onames.h makedefs
FILES=help hh data
FILESDIR=/var/games/hackdir
-${PROG}: hack.onames.h
-
hack.onames.h: makedefs def.objects.h
${.OBJDIR}/makedefs ${.CURDIR}/def.objects.h > hack.onames.h
+hack.h: hack.onames.h
+
+alloc.o hack.Decl.o hack.apply.o hack.bones.o hack.o hack.cmd.o hack.do.o \
+ hack.do_name.o hack.do_wear.o hack.dog.o hack.eat.o hack.end.o \
+ hack.engrave.o hack.fight.o hack.invent.o hack.ioctl.o hack.lev.o \
+ hack.main.o hack.makemon.o hack.mhitu.o hack.mklev.o hack.mkmaze.o \
+ hack.mkobj.o hack.mkshop.o hack.mon.o hack.monst.o hack.o_init.o \
+ hack.objnam.o hack.options.o hack.pager.o hack.potion.o hack.pri.o \
+ hack.read.o hack.rip.o hack.rumors.o hack.save.o hack.search.o hack.shk.o \
+ hack.shknam.o hack.steal.o hack.termcap.o hack.timeout.o hack.topl.o \
+ hack.track.o hack.trap.o hack.tty.o hack.u_init.o hack.unix.o hack.vault.o \
+ hack.version.o hack.wield.o hack.wizard.o hack.worm.o hack.worn.o \
+ hack.zap.o rnd.o: hack.h
+
.if !exists(${DESTDIR}${FILESDIR}/perm)
afterinstall: clobber
.endif