mirror of
https://gitee.com/yyz_o/bk_bishe_pi.git
synced 2025-09-07 23:21:26 +00:00
第一次提交
This commit is contained in:
19
maze_code/makefile
Normal file
19
maze_code/makefile
Normal 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
|
||||
Reference in New Issue
Block a user