]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - monop/Makefile
I'm guessing that there should be no space between the hyphen and
[bsdgames-darwin.git] / monop / Makefile
1 # $NetBSD: Makefile,v 1.28 2007/11/17 00:10:55 dogcow Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
3
4 .include <bsd.own.mk>
5
6 PROG= monop
7 SRCS= monop.c cards.c execute.c getinp.c houses.c jail.c misc.c \
8 morg.c print.c prop.c rent.c roll.c spec.c trade.c
9 MAN= monop.6
10 HIDEGAME=hidegame
11 CLEANFILES+=initdeck initdeck.lo cards.pck
12 .if ${MKSHARE} != "no"
13 FILES=cards.pck
14 FILESDIR=/usr/share/games
15 .endif
16
17 .if (${MACHINE} != "sun2")
18 SRCS+= malloc.c
19 .endif
20
21 realall: ${FILES}
22
23 initdeck: initdeck.lo
24 ${_MKTARGET_LINK}
25 ${HOST_LINK.c} -o ${.TARGET} ${.ALLSRC}
26
27 cards.pck: initdeck
28 ${_MKTARGET_CREATE}
29 ./initdeck ${.CURDIR}/cards.inp
30
31 .include <bsd.prog.mk>