加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 656 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joel Moriana 提交于 2021-03-05 12:53 . only enabling melodic deb packages
file_finder = find . -type f $(1) -not \( -path './venv/*' -o -path './carla_msgs/*' -o -path './packaging/build/*' -o -path './build/*' -o -path './log/*' -o -path './install/*' \)
CMAKE_FILES = $(call file_finder,\( -name "*.cmake" -o -name "CMakeLists.txt" \))
PY_FILES = $(call file_finder,-name "*.py")
check: check_format pylint
format:
$(PY_FILES) | xargs autopep8 --in-place --max-line-length=100
$(CMAKE_FILES) | xargs cmake-format -i
check_format:
$(PY_FILES) | xargs autopep8 --diff --max-line-length=100
$(CMAKE_FILES) | xargs cmake-format --check
pylint:
$(PY_FILES) | xargs pylint --rcfile=.pylintrc
deb:
./packaging/build-deb.sh
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化