Home | History | Annotate | Line # | Download | only in adventure
Makefile revision 1.3
      1  1.3  cgd #	$NetBSD: Makefile,v 1.3 1995/03/21 12:04:53 cgd Exp $
      2  1.1  jtc #	@(#)Makefile	8.1 (Berkeley) 6/12/93
      3  1.1  jtc 
      4  1.1  jtc PROG=	adventure
      5  1.1  jtc SRCS=	main.c init.c done.c save.c subr.c vocab.c wizard.c io.c data.c crc.c
      6  1.2  cgd MAN=	adventure.6
      7  1.1  jtc CFLAGS+=-traditional-cpp
      8  1.1  jtc HIDEGAME=hidegame
      9  1.1  jtc CLEANFILES+=setup data.c
     10  1.1  jtc 
     11  1.1  jtc data.c: glorkz setup
     12  1.1  jtc 	./setup ${.CURDIR}/glorkz > data.c
     13  1.1  jtc 
     14  1.1  jtc setup: setup.c hdr.h
     15  1.1  jtc 	${CC} -o setup ${.CURDIR}/setup.c
     16  1.1  jtc 
     17  1.1  jtc .include <bsd.prog.mk>
     18