freebsd-ports/textproc/wordnet/files/dict.Makefile
Mikhail Teterin 2dfda79c21 Upgrade to 1.7.1. Fix the long standing problem reported in ports/41339
(wrong resourcedir specified). Don't install second copies of some
man-pages under share/. Verify build on -current -- with the new
bsd.lib.mk (ports/40174).

PR:		ports/40174, ports/41339
Submitted by:	Sid Carter, Maxim Tulyuk
2002-08-20 16:05:05 +00:00

23 lines
543 B
Makefile

WN_INSTALLDIR= ${PREFIX}/share/WordNet-${VER}
WN_FILES= data.noun data.verb data.adj data.adv index.noun \
index.verb index.adj index.adv noun.exc verb.exc \
adj.exc adv.exc index.sense cntlist.rev \
cntlist lexnames sentidx.vrb sents.vrb
all: $(WN_FILES)
${WN_INSTALLDIR}:
mkdir -p ${WN_INSTALLDIR}
.for f in ${WN_FILES}
INSTALLED+= ${WN_INSTALLDIR}/$f
${WN_INSTALLDIR}/$f: $f
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} \
$f ${WN_INSTALLDIR}/$f
.endfor
install: ${WN_INSTALLDIR} ${INSTALLED}
NOOBJ= noobj
.include <bsd.prog.mk>