1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

continuing effort to modularize our build system

This commit is contained in:
Steffen Vogel 2016-10-13 19:47:50 -04:00
parent 410a80faf9
commit f038f00572
2 changed files with 9 additions and 2 deletions

View file

@ -17,7 +17,7 @@
#################################################################################
# Project modules
MODULES = lib plugins src tests thirdparty
MODULES = lib plugins src tests thirdparty tools
# Default prefix for install target
PREFIX ?= /usr/local
@ -97,7 +97,6 @@ everything:
.PHONY: all clean install docker doc $(MODULES)
install: $(addprefix install-,$(MODULES))
install -m 0755 tools/villas.sh $(PREFIX)/bin/villas
clean: $(addprefix clean-,$(MODULES))
rm -rf $(BUILDDIR)

8
tools/Makefile.inc Normal file
View file

@ -0,0 +1,8 @@
tools:
clean-tools:
install-tools:
install -m 0755 tools/villas.sh $(PREFIX)/bin/villas
.PHONY: tools clean-tools install-tools