1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-05-26 18:12:02 -04:00
kernel/arch/Makefile
2017-11-08 09:19:02 +00:00

10 lines
144 B
Makefile

ARCHES = $(shell ls -d */)
ARCHES := $(ARCHES:/=)
all:
make all -C $(ARCH)
clean: $(addprefix clean-, $(ARCHES))
clean-%:
make clean -C $*