Files
afs2026-hw1/code/Makefile
2026-04-02 22:22:57 +08:00

14 lines
190 B
Makefile

.PHONY: all clean run
all:
make -C build.linux depend
make -C build.linux -j 16
make -C test -j 16
clean:
make -C build.linux distclean
make -C test distclean
run:
make -C test run