image-builder/Makefile
Danny Massa 47eac28564 Spintering image-builder off from airship/images
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
2021-07-12 17:23:21 +00:00

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)