47eac28564
This moves all image-builder code from the airship/images repository here so resources aren't wasted validating PS's against these tests as they take a long time. Change-Id: I478a817b694b88cf0900c21726ee29b286ec81a3
9 lines
186 B
Makefile
9 lines
186 B
Makefile
TOPTGTS := images lint all docs run_images tests clean
|
|
IMAGES := $(wildcard */Makefile)
|
|
|
|
$(TOPTGTS): $(IMAGES)
|
|
$(IMAGES):
|
|
$(MAKE) -C $(@D) $(MAKECMDGOALS)
|
|
|
|
.PHONY: $(TOPTGTS) $(IMAGES)
|