Makefile revision 1.2
11.1Scgd# @(#)Makefile 5.1 (Berkeley) 11/10/91 21.1Scgd 31.1ScgdPROG= quiz 41.1ScgdMAN6= quiz.0 51.1ScgdSRCS= quiz.c rxp.c 61.1ScgdCATS= africa america areas arith asia babies bard chinese collectives \ 71.1Scgd ed elements europe greek inca index latin locomotive midearth morse \ 81.1Scgd mult murders poetry posneg pres province seq-easy seq-hard sexes sov \ 91.1Scgd spell state trek ucc 101.1ScgdHIDEGAME=hidegame 111.1Scgd 121.1Scgdbeforeinstall: 131.2Scgd @if [ ! -d ${DESTDIR}/usr/share/games/quiz.db ]; then \ 141.2Scgd /bin/rm -f ${DESTDIR}/usr/share/games/quiz.db ; \ 151.2Scgd mkdir -p ${DESTDIR}/usr/share/games/quiz.db ; \ 161.2Scgd chown root.wheel ${DESTDIR}/usr/share/games/quiz.db ; \ 171.2Scgd chmod 755 ${DESTDIR}/usr/share/games/quiz.db ; \ 181.2Scgd else \ 191.2Scgd true ; \ 201.2Scgd fi 211.1Scgd (cd ${.CURDIR}/datfiles; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 221.1Scgd ${CATS} ${DESTDIR}/usr/share/games/quiz.db) 231.1Scgd 241.1Scgd.include <bsd.prog.mk> 25