Makefile revision 1.2
11.2Spk# $NetBSD: Makefile,v 1.2 1994/11/30 11:38:56 pk Exp $ 21.1Sjtc# @(#)Makefile 8.1 (Berkeley) 6/11/93 31.1Sjtc 41.1SjtcSUBDIR= boggle mkdict mkindex 51.1Sjtc 61.2SpkMKDICT!=cd $(.CURDIR)/mkdict; \ 71.2Spk printf "xxx:\n\techo \$${.OBJDIR}/mkdict\n" | ${MAKE} -r -s -f - xxx 81.2SpkMKINDEX!=cd $(.CURDIR)/mkindex; \ 91.2Spk printf "xxx:\n\techo \$${.OBJDIR}/mkindex\n" | ${MAKE} -r -s -f - xxx 101.2Spk 111.1Sjtcbeforeinstall: 121.2Spk ${MKDICT} < /usr/share/dict/words > \ 131.1Sjtc ${DESTDIR}/usr/share/games/boggle/dictionary 141.2Spk ${MKINDEX} < ${DESTDIR}/usr/share/games/boggle/dictionary > \ 151.1Sjtc ${DESTDIR}/usr/share/games/boggle/dictindex 161.1Sjtc chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictionary 171.1Sjtc chmod 444 ${DESTDIR}/usr/share/games/boggle/dictionary 181.1Sjtc chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictindex 191.1Sjtc chmod 444 ${DESTDIR}/usr/share/games/boggle/dictindex 201.1Sjtc 211.1Sjtc.include <bsd.subdir.mk> 22