]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - adventure/Makefile
Allow this to be cross-compiled.
[bsdgames-darwin.git] / adventure / Makefile
1 # $NetBSD: Makefile,v 1.4 1997/04/19 06:59:34 thorpej Exp $
2 # @(#)Makefile 8.1 (Berkeley) 6/12/93
3
4 PROG= adventure
5 SRCS= main.c init.c done.c save.c subr.c vocab.c wizard.c io.c data.c crc.c
6 MAN= adventure.6
7 CFLAGS+=-traditional-cpp
8 HIDEGAME=hidegame
9 CLEANFILES+=setup data.c
10
11 data.c: glorkz setup
12 ./setup ${.CURDIR}/glorkz > data.c
13
14 setup: setup.c hdr.h
15 ${HOST_CC} -o setup ${.CURDIR}/setup.c
16
17 .include <bsd.prog.mk>