mirror of
https://gitee.com/yyz_o/bk_bishe_pi.git
synced 2025-09-07 23:21:26 +00:00
19 lines
205 B
Makefile
19 lines
205 B
Makefile
|
|
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 |