summaryrefslogtreecommitdiff
path: root/games/rogue/Makefile
blob: d0c3f9d08c295a8684cc366b7435446076e42c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#	$OpenBSD: Makefile,v 1.11 2010/01/04 17:50:38 deraadt Exp $
#	@(#)Makefile	8.1 (Berkeley) 5/31/93

PROG=	rogue

SRCS=	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}
LDADD=	-lcurses
MAN=	rogue.6
BINMODE=2555

beforeinstall: 
	@if [ ! -f ${DESTDIR}/var/games/rogue.scores ]; then \
	    ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 664 \
		/dev/null ${DESTDIR}/var/games/rogue.scores ; \
	else \
                true ; \
        fi

.include <bsd.prog.mk>