1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-03-03 16:04:28 -05:00
kernel/test/Makefile

15 lines
211 B
Makefile
Raw Normal View History

2017-11-04 08:13:22 +00:00
SUITES = libk
run: $(addprefix run-, $(SUITES))
all: $(addprefix all-, $(SUITES))
clean: $(addprefix clean-, $(SUITES))
run-%: all-%
make run -C $*
all-%:
make all -C $*
clean-%:
make clean -C $*