第一次提交

This commit is contained in:
氧原子
2025-05-14 12:34:56 +08:00
parent 64518bf42d
commit 8b2d592220
14 changed files with 929 additions and 0 deletions

19
maze_code/makefile Normal file
View File

@@ -0,0 +1,19 @@
cxx := gccarm
file_cpp := $(wildcard *.cpp)
file_o := maze.x
$(file_o) : $(file_cpp)
@$(cxx) $^ -O $@
maze : $(file_o)
debug :
@echo $(cxx)
@echo $(file_cpp)
@echo $(file_o)
.PHONY : maze debug