1 # $NetBSD: Makefile,v 1.12.2.1 1999/04/06 02:14:36 abs Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 5/31/93 3 4 PROG= rogue 5 CPPFLAGS+=-DUNIX -fwritable-strings 6 SRCS= 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 9 DPADD= ${LIBCURSES} 10 LDADD= -lcurses 11 HIDEGAME=hidegame 12 SETGIDGAME=yes 13 MAN= rogue.6 14 15 .if make(install) 16 SUBDIR+=USD.doc 17 .endif 18 19 .include <bsd.prog.mk> 20 .include <bsd.subdir.mk> 21