1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/textproc/wordnet/files/dict.Makefile
Steve Price 2a0e4eb412 Adding wordnet version 1.6.
WordNet is a powerful lexical  reference system that combines aspects of
dictionaries  and thesauri  with  current  psycholinguistic theories  of
human lexical memory. It is produced by the Cognitive Science Laboratory
at Princeton University, under the direction of Professor George Miller.

PR:		17016
Submitted by:	Mikhail Teterin <mi@aldan.algebra.com>
2000-05-01 02:40:51 +00:00

25 lines
579 B
Makefile

WN_INSTALLDIR= ${PREFIX}/share/wordnet-1.6
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 cousin.exc cousin.tops index.sense \
cntlist lexnames index.gloss sentidx.vrb sents.vrb \
stoplist.pl
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>