From 0305622f259c11258cc9d56fa46af28d2206bd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 15 May 2017 20:55:06 +0200 Subject: Add tweaks and tests for the WITHOUT feature --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6d6ff23..1580445 100644 --- a/Makefile +++ b/Makefile @@ -15,15 +15,16 @@ WITHOUT ?= BUILD_CONFIG_FILE ?= $(CURDIR)/build.config -ifeq ($(WITHOUT),) + +ifeq ($(strip $(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)) +BUILD_CONFIG = $(shell sed "s/\#.*//" $(BUILD_CONFIG_FILE) \ + | grep -v "^$(subst $(empty),\|^,$(WITHOUT))") endif -ERLANG_MK = erlang.mk +ERLANG_MK ?= erlang.mk ERLANG_MK_VERSION = $(shell git describe --tags --dirty) .PHONY: all check @@ -31,8 +32,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)/' \ - | sed 's:^ERLANG_MK_WITHOUT = .*:ERLANG_MK_WITHOUT = $(WITHOUT):' > $(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