同步毕设代码

This commit is contained in:
氧原子
2025-12-10 21:21:57 +08:00
commit 0867211769
16 changed files with 1029 additions and 0 deletions

22
实机代码/makefile Normal file
View File

@@ -0,0 +1,22 @@
cxx := gccarm
#~ cxx := g++sim
file_cpp := $(wildcard *.cpp)
file_o := /home/pi/usr/maze2.x
#~ file_o := ../maze2.x
$(file_o) : $(file_cpp)
@$(cxx) $^ -o $@
maze : $(file_o)
clean :
@rm -rf $(file_o)
debug :
@echo $(cxx)
@echo $(file_cpp)
@echo $(file_o)
.PHONY : maze clean debug