head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	94.05.14.20.16.27;	author md;	state Exp;
branches;
next	1.1;

1.1
date	93.06.12.23.30.58;	author md;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Make sure -O flag is off for cc (hc) on the RT.
@
text
@#	@@(#)Makefile	8.1 (Berkeley) 6/12/93

PROG=	adventure
SRCS=	main.c init.c done.c save.c subr.c vocab.c wizard.c io.c data.c crc.c
CFLAGS+=-traditional-cpp
MAN6=	adventure.0
HIDEGAME=hidegame
CLEANFILES+=setup data.c

.if ${MACHINE} == "rt" && (${CC} == "cc" || ${CC} == "hc")
CFLAGS=	-w
.endif

data.c: glorkz setup
	./setup ${.CURDIR}/glorkz > data.c

setup: setup.c hdr.h
	${CC} -o setup ${.CURDIR}/setup.c

.include <bsd.prog.mk>
@


1.1
log
@Initial revision
@
text
@d5 1
a6 1
CFLAGS+=-traditional-cpp
d9 4
@
