mirror of
https://github.com/tailix/kernel.git
synced 2025-05-26 18:12:02 -04:00
14 lines
215 B
Makefile
14 lines
215 B
Makefile
SUBDIRS = libk
|
|
|
|
run: $(addprefix run-, $(SUBDIRS))
|
|
all: $(addprefix all-, $(SUBDIRS))
|
|
clean: $(addprefix clean-, $(SUBDIRS))
|
|
|
|
run-%: all-%
|
|
make run -C $*
|
|
|
|
all-%:
|
|
make all -C $*
|
|
|
|
clean-%:
|
|
make clean -C $*
|