From 7bb4e145fb91d0cb6c54f181dfe5ec58c6dc594b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 6 Mar 2017 13:04:07 -0400 Subject: [PATCH] =?UTF-8?q?don=E2=80=99t=20make=20/=20clean=20thirdparty?= =?UTF-8?q?=20libs=20by=20default?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index b49d149d2..1f338c0a8 100644 --- a/Makefile +++ b/Makefile @@ -92,16 +92,11 @@ LDLIBS += $(shell pkg-config --libs ${PKGS}) all: src plugins | lib +# Build everything with different profiles: debug, coverage, ... everything: $(MAKE) DEBUG=1 $(MAKE) COVERAGE=1 $(MAKE) PROFILE=1 - $(MAKE) doc - $(MAKE) tests - -install: $(addprefix install-,$(MODULES)) - -clean: $(addprefix clean-,$(MODULES)) docker: docker build -t villas . @@ -118,5 +113,8 @@ doc: | $(BUILDDIR)/doc/ .PRECIOUS: %/ .SECONDEXPANSION: +install: $(addprefix install-,$(filter-out thirdparty,$(MODULES))) +clean: $(addprefix clean-,$(filter-out thirdparty,$(MODULES))) + -include $(wildcard $(BUILDDIR)/**/*.d) -include $(addsuffix /Makefile.inc,$(MODULES))