mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
11 lines
140 B
Makefile
11 lines
140 B
Makefile
export OUTPUT = kernelmq
|
|
|
|
SUBDIRS = none x86
|
|
|
|
all:
|
|
make all -C $(ARCH)
|
|
|
|
clean: $(addprefix clean-, $(SUBDIRS))
|
|
|
|
clean-%:
|
|
make clean -C $*
|