2 Star 11 Fork 2

qianfan Zhao / LogicMaster

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 519 Bytes
一键复制 编辑 原始数据 按行查看 历史
OBJS := ./main.o
INCS := -I./
DEFS := -DUSE_STDPERIPH_DRIVER
default: all
name := LogicMaster
include platform/platform.mk
include stlib/stlib.mk
include lua/lua.mk
include llibs/llibs.mk
include common.mk
all:$(name).bin
burn:$(name).bin
@st-flash write $< 0x08000000
clean:
@rm -f $(name).bin $(name).elf $(OBJS)
$(name).bin:$(name).elf
@arm-none-eabi-objcopy -O binary -S $< $@
$(name).elf:$(OBJS)
@arm-none-eabi-gcc $(LFLAGS) $^ -Tstlib/flash.ld -o $@
@arm-none-eabi-size $@
.PHONY: all burn clean
C
1
https://gitee.com/zhaozhongchen/LogicMaster.git
git@gitee.com:zhaozhongchen/LogicMaster.git
zhaozhongchen
LogicMaster
LogicMaster
master

搜索帮助