freebsd-dev/games/monop/Makefile
Jordan K. Hubbard 554eb505f8 Bring in the 4.4 Lite games directory, modulo man page changes and segregation
of the x11 based games.  I'm not going to tag the originals with bsd_44_lite
and do this in two stages since it's just not worth it for this collection,
and I've got directory renames to deal with that way.  Bleah.
Submitted by:	jkh
1994-09-04 04:03:31 +00:00

27 lines
566 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= monop
SRCS= monop.c cards.c execute.c getinp.c houses.c jail.c misc.c morg.c \
print.c prop.c rent.c roll.c spec.c trade.c
MAN6= monop.6
DPADD= ${LIBCOMPAT}
LDADD= -lcompat
HIDEGAME=hidegame
CLEANFILES+=initdeck cards.pck
all: ${PROG} ${MAN6}
monop: cards.pck
cards.pck: initdeck
./initdeck ${.CURDIR}/cards.inp
initdeck: initdeck.c
${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/initdeck.c
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 444 cards.pck \
${DESTDIR}/usr/share/games
.include <bsd.prog.mk>