Files
bk_bishe_pi/bot_code_turn/makefile
2025-05-29 11:04:41 +08:00

23 lines
294 B
Makefile

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