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:
parent
410a80faf9
commit
f038f00572
2 changed files with 9 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -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
8
tools/Makefile.inc
Normal 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
|
Loading…
Add table
Reference in a new issue