wormhole/aptos/examples/Makefile

8 lines
134 B
Makefile

SUBDIRS := $(wildcard */)
TARGETS := build test
.PHONY: $(TARGETS)
$(TARGETS):
$(foreach dir,$(SUBDIRS),make -C $(dir) $@ &&) true