1997-10-11 13:34:07 +04:00
|
|
|
# $NetBSD: Makefile,v 1.8 1997/10/11 09:34:19 mycroft Exp $
|
1995-04-22 14:27:22 +04:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
PROG= rogue
|
1994-04-01 12:31:22 +04:00
|
|
|
CFLAGS+=-DUNIX -fwritable-strings
|
1993-03-21 12:45:37 +03:00
|
|
|
SRCS= curses.c hit.c init.c inventory.c level.c machdep.c main.c \
|
|
|
|
message.c monster.c move.c object.c pack.c play.c random.c ring.c \
|
|
|
|
room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.c
|
1995-04-22 14:27:22 +04:00
|
|
|
DPADD= ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
|
|
|
|
LDADD= -lcurses -ltermlib -lcompat
|
1993-03-21 12:45:37 +03:00
|
|
|
HIDEGAME=hidegame
|
1994-12-22 12:31:26 +03:00
|
|
|
MAN= rogue.6
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-04-22 15:18:35 +04:00
|
|
|
.if make(install)
|
1997-10-11 13:34:07 +04:00
|
|
|
SUBDIR+=USD.doc
|
1995-04-22 15:18:35 +04:00
|
|
|
.endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.prog.mk>
|
1997-10-11 13:34:07 +04:00
|
|
|
.include <bsd.subdir.mk>
|