Home | History | Annotate | Line # | Download | only in boggle
Makefile revision 1.12
      1  1.12   mycroft #	$NetBSD: Makefile,v 1.12 1997/10/11 09:34:16 mycroft Exp $
      2   1.1       jtc #	@(#)Makefile	8.1 (Berkeley) 6/11/93
      3   1.1       jtc 
      4   1.1       jtc SUBDIR=	boggle mkdict mkindex
      5   1.1       jtc 
      6   1.2        pk MKDICT!=cd $(.CURDIR)/mkdict; \
      7  1.11   mycroft 	printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/mkdict\n" | ${MAKE} -s -f-
      8   1.2        pk MKINDEX!=cd $(.CURDIR)/mkindex; \
      9  1.11   mycroft 	printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/mkindex\n" | ${MAKE} -s -f-
     10  1.10  christos WORDS=${.CURDIR}/../../share/dict/web2
     11   1.7  christos FILES=dictionary dictindex
     12   1.7  christos FILESDIR=/usr/share/games/boggle
     13   1.7  christos CLEANFILES+=${FILES}
     14   1.2        pk 
     15   1.7  christos all: ${FILES}
     16   1.3     glass 
     17   1.9  christos ${MKDICT}:
     18   1.9  christos 	@cd ${.CURDIR}/mkdict && ${MAKE}
     19   1.9  christos 
     20   1.9  christos ${MKINDEX}:
     21   1.9  christos 	@cd ${.CURDIR}/mkindex && ${MAKE}
     22   1.7  christos 	
     23   1.7  christos 
     24   1.9  christos dictionary: ${WORDS} ${MKDICT}
     25   1.7  christos 	rm -f ${.TARGET}
     26   1.7  christos 	${MKDICT} < ${WORDS} > ${.TARGET}
     27   1.7  christos 
     28   1.9  christos dictindex: dictionary ${MKINDEX}
     29   1.7  christos 	rm -f ${.TARGET}
     30   1.7  christos 	${MKINDEX} < dictionary > ${.TARGET}
     31   1.7  christos 
     32   1.7  christos .include <bsd.prog.mk>
     33  1.12   mycroft .include <bsd.subdir.mk>
     34