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