Makefile revision 1.12
1# $NetBSD: Makefile,v 1.12 1998/02/18 22:37:32 jtc Exp $ 2# @(#)Makefile 8.1 (Berkeley) 5/31/93 3 4PROG= rogue 5CPPFLAGS+=-DUNIX -fwritable-strings 6SRCS= curses.c hit.c init.c inventory.c level.c machdep.c main.c \ 7 message.c monster.c move.c object.c pack.c play.c random.c ring.c \ 8 room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.c 9DPADD= ${LIBCURSES} 10LDADD= -lcurses 11HIDEGAME=hidegame 12SETUIDGAME=yes 13MAN= rogue.6 14 15.if make(install) 16SUBDIR+=USD.doc 17.endif 18 19.include <bsd.prog.mk> 20.include <bsd.subdir.mk> 21