blob: d540e7de9b3b848402403ed3fe528deb1346537b (
plain) (
tree)
|
|
# Copyright (c) 2013-2017, Loïc Hoguin <[email protected]>
# This file is part of erlang.mk and subject to the terms of the ISC License.
# External plugins.
DEP_PLUGINS ?=
$(foreach p,$(DEP_PLUGINS),\
$(eval $(if $(findstring /,$p),\
$(call core_dep_plugin,$p,$(firstword $(subst /, ,$p))),\
$(call core_dep_plugin,$p/plugins.mk,$p))))
|