]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - boggle/Makefile
Untabify the header definition to avoid misaligned comment on
[bsdgames-darwin.git] / boggle / Makefile
index 6b5b161c8a4b8601c6f52d7fc96f50290f4de930..59d2f358ce87e7a1b36e66218c4f5fa540e0f7b1 100644 (file)
@@ -1,34 +1,39 @@
-#      $NetBSD: Makefile,v 1.10 1997/04/30 20:07:40 christos Exp $
+#      $NetBSD: Makefile,v 1.22 2003/10/21 10:01:19 lukem Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/11/93
 
+.include <bsd.own.mk>
+
 SUBDIR=        boggle mkdict mkindex
 
-MKDICT!=cd $(.CURDIR)/mkdict; \
-       printf "xxx:\n\techo \$${.OBJDIR}/mkdict\n" | \
-       ${MAKE} -r -s -f - xxx | grep mkdict
-MKINDEX!=cd $(.CURDIR)/mkindex; \
-       printf "xxx:\n\techo \$${.OBJDIR}/mkindex\n" | \
-       ${MAKE} -r -s -f - xxx | grep mkindex
-WORDS=${.CURDIR}/../../share/dict/web2
-FILES=dictionary dictindex
+MKDICTDIR!= cd $(.CURDIR)/mkdict; ${PRINTOBJDIR}
+MKDICT=${MKDICTDIR}/mkdict
+MKINDEXDIR!= cd $(.CURDIR)/mkindex; ${PRINTOBJDIR}
+MKINDEX=${MKINDEXDIR}/mkindex
+WORDS=${NETBSDSRCDIR}/share/dict/web2
+DICTFILES=dictionary dictindex
+.if ${MKSHARE} != "no"
+FILES=${DICTFILES}
 FILESDIR=/usr/share/games/boggle
-CLEANFILES+=${FILES}
+.endif
+CLEANFILES+=${DICTFILES}
 
-all: ${FILES}
+realall: ${FILES}
 
 ${MKDICT}:
        @cd ${.CURDIR}/mkdict && ${MAKE}
 
 ${MKINDEX}:
        @cd ${.CURDIR}/mkindex && ${MAKE}
-       
 
 dictionary: ${WORDS} ${MKDICT}
+       ${_MKTARGET_CREATE}
        rm -f ${.TARGET}
        ${MKDICT} < ${WORDS} > ${.TARGET}
 
 dictindex: dictionary ${MKINDEX}
+       ${_MKTARGET_CREATE}
        rm -f ${.TARGET}
        ${MKINDEX} < dictionary > ${.TARGET}
 
 .include <bsd.prog.mk>
+.include <bsd.subdir.mk>