Files
ios2024/code/Makefile
Yi-Ting Shih 4912fe4736 Ytshih/hw2
2024-11-02 07:58:12 +08:00

18 lines
219 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
debug:
make -C test debug