This commit is contained in:
施羿廷
2024-10-04 19:53:08 +00:00
parent 0284b75ab6
commit ba9ef819ba
59 changed files with 419 additions and 193 deletions

14
code/Makefile Normal file
View File

@@ -0,0 +1,14 @@
.PHONY: all clean run
all:
make -C build.linux depend
make -C build.linux
make -C test
clean:
make -C build.linux clean
make -C test distclean
run:
make -C test run