NetBSD/games/hack/Makefile

46 lines
1.6 KiB
Makefile
Raw Normal View History

1997-03-27 13:55:21 +03:00
# $NetBSD: Makefile,v 1.20 1997/03/27 10:55:21 mycroft Exp $
1997-01-07 14:56:32 +03:00
# @(#)Makefile 8.2 (Berkeley) 4/27/95
1993-03-21 12:45:37 +03:00
PROG= hack
CFLAGS+=-I.
SRCS+= hack.onames.h
SRCS+= alloc.c hack.Decl.c hack.apply.c hack.bones.c hack.c hack.cmd.c \
1993-03-21 12:45:37 +03:00
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
1994-12-22 12:31:26 +03:00
MAN= hack.6
1994-05-23 09:32:40 +04:00
DPADD+= ${LIBTERM} ${LIBCOMPAT}
LDADD+= -ltermcap -lcompat
1993-03-21 12:45:37 +03:00
HIDEGAME=hidegame
1993-08-07 02:49:42 +04:00
CLEANFILES+=hack.onames.h makedefs
1997-03-27 13:55:21 +03:00
FILES=help hh data
1997-03-25 01:15:37 +03:00
FILESDIR=/var/games/hackdir
1993-03-21 12:45:37 +03:00
1993-08-15 02:21:45 +04:00
${PROG}: hack.onames.h
1993-03-21 12:45:37 +03:00
hack.onames.h: makedefs def.objects.h
1994-01-05 00:40:31 +03:00
${.OBJDIR}/makedefs ${.CURDIR}/def.objects.h > hack.onames.h
1993-03-21 12:45:37 +03:00
makedefs: makedefs.c
1993-11-08 07:45:28 +03:00
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${.CURDIR}/${.PREFIX}.c ${LDADD}
1993-03-21 12:45:37 +03:00
1997-03-25 01:15:37 +03:00
.if !exists(${DESTDIR}${FILESDIR}/perm)
proginstall:: clobber
.endif
clobber:
1996-10-18 06:37:51 +04:00
${INSTALL} -c -o games -g games -m 600 /dev/null \
1993-03-21 12:45:37 +03:00
${DESTDIR}/var/games/hackdir/perm
1996-10-18 06:37:51 +04:00
${INSTALL} -c -o games -g games -m 600 /dev/null \
1993-03-21 12:45:37 +03:00
${DESTDIR}/var/games/hackdir/record
rm -f ${DESTDIR}/var/games/hackdir/bones*
.include <bsd.prog.mk>