From 9292409f21393ec539cdf40720d26b43914f6018 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sun, 3 Apr 2016 23:46:20 +0200 Subject: Add WITHOUT variable to exclude components on build This allows to ignore lines from the default build.config if needed. For example to not include packages run make WITHOUT=index --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7c8d54b..6d6ff23 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,16 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +WITHOUT ?= + BUILD_CONFIG_FILE ?= $(CURDIR)/build.config +ifeq ($(WITHOUT),) BUILD_CONFIG = $(shell sed "s/\#.*//" $(BUILD_CONFIG_FILE)) +else +empty := $(subst ,, ) +BUILD_EXCLUDE = "^$(subst $(empty),\|^,$(WITHOUT))" +BUILD_CONFIG = $(shell sed "s/\#.*//" $(BUILD_CONFIG_FILE)|grep -v $(BUILD_EXCLUDE)) +endif ERLANG_MK = erlang.mk ERLANG_MK_VERSION = $(shell git describe --tags --dirty) @@ -23,7 +31,8 @@ ERLANG_MK_VERSION = $(shell git describe --tags --dirty) all: export LC_COLLATE=C; \ awk 'FNR==1 && NR!=1{print ""}1' $(patsubst %,%.mk,$(BUILD_CONFIG)) \ - | sed 's/^ERLANG_MK_VERSION = .*/ERLANG_MK_VERSION = $(ERLANG_MK_VERSION)/' > $(ERLANG_MK) + | sed 's/^ERLANG_MK_VERSION = .*/ERLANG_MK_VERSION = $(ERLANG_MK_VERSION)/' \ + | sed 's:^ERLANG_MK_WITHOUT = .*:ERLANG_MK_WITHOUT = $(WITHOUT):' > $(ERLANG_MK) ifdef p # Remove p from the list of variables since that conflicts with bootstrapping. -- cgit v1.2.3