xref: /386bsd/usr/src/games/monop/Makefile (revision a2142627)
1#	@(#)Makefile	5.5 (Berkeley) 5/11/90
2
3PROG=	monop
4SRCS=	monop.c cards.c execute.c getinp.c houses.c jail.c misc.c morg.c \
5	print.c prop.c rent.c roll.c spec.c trade.c
6MAN6=	monop.0
7DPADD=	${LIBCOMPAT}
8LDADD=	-lcompat
9HIDEGAME=hidegame
10CLEANFILES+=initdeck cards.pck
11
12all: cards.pck
13
14cards.pck: initdeck
15	./initdeck ${.CURDIR}/cards.inp
16
17initdeck: initdeck.c
18	${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/initdeck.c
19
20beforeinstall:
21	install -o ${BINOWN} -g ${BINGRP} -m 444 cards.pck \
22	    ${DESTDIR}/usr/share/games
23
24.include <bsd.prog.mk>
25