mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-02 11:09:29 +00:00
2dfda79c21
(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
18 lines
350 B
Makefile
18 lines
350 B
Makefile
WN_INSTALLDIR = ${PREFIX}/include/WordNet-${VER}
|
|
|
|
WN_FILES= license.h setutil.h wn.h wnconsts.h wnglobal.h \
|
|
wnhelp.h wnrtl.h wntypes.h
|
|
|
|
all: $(WN_FILES)
|
|
|
|
${WN_INSTALLDIR}:
|
|
mkdir -p ${WN_INSTALLDIR}
|
|
|
|
install: ${WN_INSTALLDIR}
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${WN_FILES} ${WN_INSTALLDIR}/
|
|
|
|
NOOBJ= noobj
|
|
|
|
.include <bsd.prog.mk>
|