mirror of
https://github.com/HEYAHONG/syscall.online
synced 2025-05-08 06:35:59 +08:00
11 lines
224 B
Makefile
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;)
|