syscall.online/Makefile
2024-07-14 02:10:31 +08:00

11 lines
224 B
Makefile

.PHONY:all clean
SUBDIRS:=$(shell find . -maxdepth 2 -mindepth 2 -name Makefile | xargs dirname | xargs realpath)
all:
$(foreach d, $(SUBDIRS), $(MAKE) -C $(d);)
clean:
$(foreach d, $(SUBDIRS), $(MAKE) -C $(d) clean;)