added 'buildcheck/installcheck targets
This commit is contained in:
parent
b8763a8e4b
commit
64140c7f69
1 changed files with 8 additions and 1 deletions
|
|
@ -3,8 +3,11 @@
|
||||||
projects := $(filter-out _%, $(dir $(wildcard */Makefile)))
|
projects := $(filter-out _%, $(dir $(wildcard */Makefile)))
|
||||||
|
|
||||||
all: $(projects:%=%-build)
|
all: $(projects:%=%-build)
|
||||||
clean: $(projects:%=%-clean)
|
buildcheck: $(projects:%=%-buildcheck)
|
||||||
install: $(projects:%=%-install)
|
install: $(projects:%=%-install)
|
||||||
|
installcheck: $(projects:%=%-installcheck)
|
||||||
|
clean: $(projects:%=%-clean)
|
||||||
|
|
||||||
projects:
|
projects:
|
||||||
@echo $(projects)
|
@echo $(projects)
|
||||||
|
|
||||||
|
|
@ -14,3 +17,7 @@ projects:
|
||||||
$(MAKE) -C $(<D) clean
|
$(MAKE) -C $(<D) clean
|
||||||
%-install: %/Makefile
|
%-install: %/Makefile
|
||||||
$(MAKE) -C $(<D) install
|
$(MAKE) -C $(<D) install
|
||||||
|
%-buildcheck: %/Makefile %-build
|
||||||
|
$(MAKE) -C $(<D) buildcheck
|
||||||
|
%-installcheck: %/Makefile
|
||||||
|
$(MAKE) -C $(<D) installcheck
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue