summaryrefslogtreecommitdiffstats
path: root/rogue/Makefile
blob: 4e3f6b4fcb8383a7246b4f26c757d6a88dfe2315 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#	from: @(#)Makefile	5.7 (Berkeley) 5/11/90
#	$Id: Makefile,v 1.5 1994/12/22 09:36:02 cgd Exp $

PROG=	rogue
CFLAGS+=-DUNIX -fwritable-strings
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
DPADD=	${LIBCURSES} ${LIBTERM}
LDADD=	-lcurses -ltermlib
HIDEGAME=hidegame
MAN=	rogue.6

.include <bsd.prog.mk>