加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 541 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rafael Coelho 提交于 2018-02-02 14:22 . Change checkpath to uncrustify
TARGET_BIN:=emWin_eli9325_stm32f103.bin
all: tests runnable
analysis:
make -f MakeAnalysis.mk V=${V} all
code_beautifier:
make -f MakeBeautifier.mk V=${V} all
runnable:
make -f MakeRunnable.mk V=${V} all
tests:
make -f MakeTests.mk V=${V} all
tests_coverage:
make -f MakeTests.mk V=${V} coverage
flash:
st-flash write $(TARGET_BIN) 0x8000000
erase:
st-flash erase
clean:
make -f MakeRunnable.mk V=${V} clean
make -f MakeTests.mk V=${V} clean
make -f MakeTests.mk V=${V} coverage_clean
@ rm -rf ./build/objs/ ./build/lib/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化