1# $OpenBSD: Makefile,v 1.10 2024/09/02 16:34:44 deraadt Exp $ 2 3PROG= quiz 4MAN= quiz.6 5SRCS= quiz.c rxp.c 6CATS= africa america arith asia babies bard chinese collectives \ 7 ed elements europe flowers greek ship inca index latin locomotive \ 8 midearth morse mult murders poetry posneg pres province seq-easy \ 9 seq-hard sexes sov state trek ucc 10 11NAPHONE= ${.CURDIR}/../../share/misc/na.phone 12CLEANFILES+= areas 13 14areas: ${NAPHONE} 15 sh ${.CURDIR}/naphone2areas.sh ${NAPHONE} > areas 16 17afterinstall: areas 18 (cd ${.CURDIR}/datfiles; ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} \ 19 -g ${BINGRP} -m 444 ${CATS} ${DESTDIR}/usr/share/games/quiz.db) 20 ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ 21 areas ${DESTDIR}/usr/share/games/quiz.db 22 23.include <bsd.prog.mk> 24