mirror of
https://github.com/tailix/kernel.git
synced 2025-05-26 18:12:02 -04:00
10 lines
144 B
Makefile
10 lines
144 B
Makefile
ARCHES = $(shell ls -d */)
|
|
ARCHES := $(ARCHES:/=)
|
|
|
|
all:
|
|
make all -C $(ARCH)
|
|
|
|
clean: $(addprefix clean-, $(ARCHES))
|
|
|
|
clean-%:
|
|
make clean -C $*
|