kernel-release/Makefile

14 lines
218 B
Makefile

.PHONY: all clear run debug
all:
@make -C src all --no-print-directory
clear:
@make -C src clear --no-print-directory
run:
@make -C test run --no-print-directory
debug:
@make -C test debug --no-print-directory