1 Star 0 Fork 33

chebin/ssiot

forked from 三三物联网/ssiot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
outofmemory 提交于 2023-04-10 20:03 . 修改makefile
# Define the subdirectories to enter
SUBDIRS := admin alarm device forward notify
.PHONY: all clean x86 arm win
# 编译所有子目录中的代码
all:
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
x86:
@for dir in $(SUBDIRS); do \
$(MAKE) ARCH=x86 OS=linux -C $$dir; \
done
arm:
@for dir in $(SUBDIRS); do \
$(MAKE) ARCH=arm OS=linux -C $$dir; \
done
win:
@for dir in $(SUBDIRS); do \
$(MAKE) ARCH=x86 OS=windows -C $$dir; \
done
# 清理所有子目录中的编译输出
clean:
rm -rf bin
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Insister6633/ssiot.git
git@gitee.com:Insister6633/ssiot.git
Insister6633
ssiot
ssiot
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385