xref: /dragonfly/games/adventure/Makefile (revision 509221ae)
1#	@(#)Makefile	8.1 (Berkeley) 6/12/93
2# $FreeBSD: src/games/adventure/Makefile,v 1.7.6.1 2001/04/25 09:28:42 ru Exp $
3# $DragonFly: src/games/adventure/Makefile,v 1.5 2005/03/25 12:56:48 liamfoy Exp $
4
5PROG=	adventure
6SRCS=	main.c init.c done.c save.c subr.c vocab.c wizard.c io.c data.c crc.c
7MAN=	adventure.6
8HIDEGAME=hidegame
9CLEANFILES=data.c setup.nx setup.no
10WARNS?= 6
11
12build-tools: setup.nx
13
14data.c: glorkz setup.nx
15	./setup.nx ${.CURDIR}/glorkz > data.c
16
17.include <bsd.prog.mk>
18