]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - monop/Makefile
printf() pedant - do not pass variable alone, use %s.
[bsdgames-darwin.git] / monop / Makefile
index 0b692e3d6c4d1942e2a33125302cd5d89cdc2f32..70bdbc4fcb733bfe5a6b5708339de37df2abe3e2 100644 (file)
@@ -1,25 +1,25 @@
-#      $NetBSD: Makefile,v 1.12 1995/03/23 08:34:32 cgd Exp $
+#      $NetBSD: Makefile,v 1.20 1999/02/13 02:54:21 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
+.include <bsd.own.mk>
+
 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
 MAN=   monop.6
-DPADD+=        ${LIBCOMPAT}
-LDADD+=        -lcompat
 HIDEGAME=hidegame
 CLEANFILES+=initdeck cards.pck
+.if ${MKSHARE} != "no"
+FILES=cards.pck
+FILESDIR=/usr/share/games
+.endif
 
 monop: cards.pck
 
-cards.pck: initdeck
-       ${.OBJDIR}/initdeck ${.CURDIR}/cards.inp
-
 initdeck: initdeck.c
-       ${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${.CURDIR}/initdeck.c ${LDADD}
+       ${HOST_LINK.c} -o initdeck ${.CURDIR}/initdeck.c
 
-beforeinstall:
-       install -c -o ${BINOWN} -g ${BINGRP} -m 444 cards.pck \
-           ${DESTDIR}/usr/share/games
+cards.pck: initdeck
+       ${.OBJDIR}/initdeck ${.CURDIR}/cards.inp
 
 .include <bsd.prog.mk>