1 Star 0 Fork 0

xxgc2hhb/openrave

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
rdiankov 提交于 2012-01-06 18:46 . fixed jitter bug
CMAKE_BUILD_TYPE=$(shell if [ $(DEBUG) ]; then echo Debug; else echo RelWithDebInfo; fi)
all:
@mkdir -p build; rm -f build/CMakeCache.txt
@if [ $(prefix) ]; then \
cd build && cmake -DCMAKE_INSTALL_PREFIX=$(prefix) -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE) ..; \
else \
cd build && cmake -DCMAKE_VERBOSE_MAKEFILE=OFF -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE) ..; \
fi
cd build && $(MAKE) $(PARALLEL_JOBS)
install:
cd build && $(MAKE) $(PARALLEL_JOBS) install
uninstall:
cd build && $(MAKE) uninstall
test: all
cd build && $(MAKE) $(PARALLEL_JOBS) install
export PATH=`sh build/openrave-config --prefix`/bin:$(PATH) && export PYTHONPATH=`openrave-config --python-dir`:$(PYTHONPATH) && export LD_LIBRARY_PATH=`openrave-config --prefix`/lib:$(LD_LIBRARY_PATH) && cd test && python run_tests.py $PARALLEL_JOBS
docs: all
cd build && $(MAKE) $(PARALLEL_JOBS) install
export PATH=`sh build/openrave-config --prefix`/bin:$(PATH) && export PYTHONPATH=`openrave-config --python-dir`:$(PYTHONPATH) && export LD_LIBRARY_PATH=`openrave-config --prefix`/lib:$(LD_LIBRARY_PATH) && cd docs && ./build.sh
clean:
-cd build && $(MAKE) clean
rm -rf build
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nexusocc/openrave.git
git@gitee.com:nexusocc/openrave.git
nexusocc
openrave
openrave
master

搜索帮助

Cb406eda 1850385 E526c682 1850385