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