freebsd-ports/textproc/wordnet/files/dict.Makefile
Mikhail Teterin 7e04dc48fd Upgrade to 1.7. For changes see
ftp://ftp.cogsci.princeton.edu/pub/wordnet/1.7/CHANGES
2001-10-31 05:04:29 +00:00

23 lines
540 B
Makefile

WN_INSTALLDIR= ${PREFIX}/share/wordnet-1.7
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>