8ebfc55a6e
cleanliness in the main library (diffs to be sent to the vendor as in the past). The installed library is now called libWN, as vendor's build would call it, rather than libwn2, as the previous version of the port called it. This may upset the client port of p5 -- the maintainer is notified and awaits this commit. PR: ports/90323 Submitted by: clsung
22 lines
531 B
Makefile
22 lines
531 B
Makefile
WN_INSTALLDIR= ${PREFIX}/share/WordNet
|
|
WN_FILES= adj.exc adv.exc cntlist cntlist.rev data.adj \
|
|
data.adv data.noun data.verb frames.vrb index.adj \
|
|
index.adv index.noun index.sense index.verb \
|
|
noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc
|
|
|
|
all: $(WN_FILES)
|
|
|
|
${WN_INSTALLDIR}:
|
|
mkdir -p ${WN_INSTALLDIR}
|
|
|
|
.for f in ${WN_FILES}
|
|
INSTALLED+= ${WN_INSTALLDIR}/$f
|
|
|
|
${WN_INSTALLDIR}/$f: $f
|
|
${BSD_INSTALL_DATA} $f ${WN_INSTALLDIR}/$f
|
|
.endfor
|
|
|
|
install: ${WN_INSTALLDIR} ${INSTALLED}
|
|
|
|
NO_OBJ= noobj
|
|
.include <bsd.prog.mk>
|