加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
makefile.submodules 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
# This is in a separate file so that we can download the submodules at
# configure-time, as well as exposing a nice target if things go wrong
# afterwards (for example, after changing branches)
submodules: sub_all
mpark_submodule:
@echo "Downloading mpark.variant"
git submodule update --init --recursive ./externalpackages/mpark.variant
sub_all:
@for d in $$(ls externalpackages | grep -v PVODE) ; do echo "Downloading $$d" ; git submodule update --init --recursive ./externalpackages/$$d ; done
python_submodules:
@for d in boututils boutdata ; do echo "Downloading $$d" ; git submodule update --init --recursive ./externalpackages/$$d ; done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化