This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
# $NetBSD: buildlink3.mk,v 1.22 2009/03/20 19:24:51 joerg Exp $
|
|
|
|
BUILDLINK_TREE+= ocaml
|
|
|
|
.if !defined(OCAML_BUILDLINK3_MK)
|
|
OCAML_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.ocaml+= ocaml>=3.08.2
|
|
BUILDLINK_ABI_DEPENDS.ocaml+= ocaml>=3.09.1nb2
|
|
BUILDLINK_PKGSRCDIR.ocaml?= ../../lang/ocaml
|
|
BUILDLINK_DEPMETHOD.ocaml?= build
|
|
|
|
. include "../../mk/bsd.fast.prefs.mk"
|
|
. if ${OPSYS} == "Darwin"
|
|
INSTALL_UNSTRIPPED= yes
|
|
. endif
|
|
|
|
PRINT_PLIST_AWK+= /^@dirrm lib\/ocaml$$/ \
|
|
{ print "@comment in ocaml: " $$0; next }
|
|
|
|
BUILDLINK_TARGETS+= ocaml-wrappers
|
|
OCAML_WRAPPERS= ocamlc ocamlc.opt ocamlcp ocamlmklib ocamlmktop \
|
|
ocamlopt ocamlopt.opt
|
|
OCAMLBIN_WRAPPERS= ocaml
|
|
|
|
.PHONY: ocaml-wrappers
|
|
ocaml-wrappers:
|
|
${_PKG_SILENT}${_PKG_DEBUG} set -e; \
|
|
for w in ${OCAML_WRAPPERS}; do \
|
|
${SED} -e 's|@SH@|'${SH:Q}'|g' \
|
|
-e 's|@OCAML_PREFIX@|${BUILDLINK_PREFIX.ocaml}|g' \
|
|
-e 's|@CFLAGS@|'${CFLAGS:Q}'|g' \
|
|
-e 's|@LDFLAGS@|'${LDFLAGS:Q}'|g' \
|
|
< ${.CURDIR}/../../lang/ocaml/files/wrapper.sh \
|
|
> ${BUILDLINK_DIR}/bin/"$$w"; \
|
|
${CHMOD} +x ${BUILDLINK_DIR}/bin/"$$w"; \
|
|
done
|
|
${_PKG_SILENT}${_PKG_DEBUG} set -e; \
|
|
for w in ${OCAMLBIN_WRAPPERS}; do \
|
|
${LN} -s ${BUILDLINK_PREFIX.ocaml}/bin/"$$w" \
|
|
${BUILDLINK_DIR}/bin/"$$w"; \
|
|
done
|
|
.endif # OCAML_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -ocaml
|