]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/rogue/Makefile
Don't say a fscking word, any one of you.
[FreeBSD/FreeBSD.git] / games / rogue / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2
3 PROG=   rogue
4 CFLAGS+=-DUNIX -fwritable-strings
5 SRCS=   curses.c hit.c init.c inventory.c level.c machdep.c main.c \
6         message.c monster.c move.c object.c pack.c play.c random.c ring.c \
7         room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.c
8 DPADD=  ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT}
9 LDADD=  -lcurses -ltermcap -lcompat
10 HIDEGAME=hidegame
11 MAN6=   rogue.6
12
13 beforeinstall:
14         ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
15             ${DESTDIR}/var/games/rogue.scores
16
17 .include <bsd.prog.mk>