mirror of
https://github.com/tailix/kernel.git
synced 2024-11-27 11:24:34 -05: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 $*
|