加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 704 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wings 提交于 2020-09-10 11:13 . 修复时间错误
cc=arm-poky-linux-gnueabi-gcc -march=armv7ve -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 --sysroot=/opt/fsl-imx-x11/4.1.15-2.1.0/sysroots/cortexa7hf-neon-poky-linux-gnueabi
#cc=gcc
target=gateway_len_1
obj=gateway.o cJSON.o md5.o myuartlib.o databuffifo.o
$(target):$(obj)
$(cc) -g -o $(target) $(obj) -lm -lcurl -lpthread
gateway.o:gateway.c cJSON.h md5.h myuart.h databuffifo.h semaphore_operation.h myport.h gateway.h
$(cc) -c gateway.c
cJSON.o:cJSON.c cJSON.h
$(cc) -c cJSON.c -lm -lcurl
md5.o:md5.c md5.h
$(cc) -c md5.c -lm
myuartlib.o:myuartlib.c myuart.h gateway.h
$(cc) -c myuartlib.c
databuffifo.o:databuffifo.c databuffifo.h gateway.h
$(cc) -c databuffifo.c
clean:
rm $(target) $(obj)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化