3 Star 2 Fork 1

hqyj/虚拟仿真服务器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
天真星 提交于 2022-04-11 20:55 . 增加光照监测
CC=gcc
#CC=arm-none-linux-gnueabi-gcc
AFLAGS= -c -g
LDFLAGS= -lpthread -lpaho-mqtt3c -lm
AFLAGS += -I paho/include
LDFLAGS += -L paha/lib
OBJS = main.o mqtt.o server.o msg_handler.o serial.o cJSON.o
smart_home :$(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)
dep_files := $(foreach f,$(OBJS),.$(f).d)
dep_files := $(wildcard $(dep_files))
ifneq ($(dep_files),)
include $(dep_files)
endif
$(OBJS):%.o:%.c
$(CC) -Wp,-MD,.$@.d $(AFLAGS) $< -o $@
.PHONY:clean lib
clean:
rm *.o smart_home
lib:
ar crs libmylib.a
#gcc main.c -o server -L.. -lmylib -lpthread
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hqyj-jn/simulation-server.git
git@gitee.com:hqyj-jn/simulation-server.git
hqyj-jn
simulation-server
虚拟仿真服务器
master

搜索帮助