mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
don’t make / clean thirdparty libs by default
This commit is contained in:
parent
4de144ff70
commit
7bb4e145fb
1 changed files with 4 additions and 6 deletions
10
Makefile
10
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))
|
||||
|
|
Loading…
Add table
Reference in a new issue