2025.5.17第一次提交,包括16号和今天,在实机上,对代码修改后的结果

This commit is contained in:
Ñõԭ×Ó
2025-05-17 15:04:27 +08:00
parent 137218ebe5
commit 5ce7796b14
7 changed files with 300 additions and 74 deletions

View File

@@ -0,0 +1,20 @@
cxx := gccarm
file_cpp := $(wildcard *.cpp)
file_o := /home/pi/usr/pid.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