kernel-dev/Makefile

14 lines
218 B
Makefile
Raw Normal View History

.PHONY: all clear run debug
all:
@make -C src all --no-print-directory
clear:
@make -C src clear --no-print-directory
run:
2023-12-11 20:13:36 +08:00
@make -C test run --no-print-directory
debug:
2023-12-11 20:13:36 +08:00
@make -C test debug --no-print-directory