makefile.am

来自「机器人人3D仿真工具,可以加入到Simbad仿真环境下应用。」· AM 代码 · 共 42 行

AM
42
字号
if ENABLE_PYTHONnoinst_DATA = pythonbuildPYTHONINSTALL = pythoninstall# files that must be built firstBUILT_SOURCES = gazebo_oo.iendif# files that go in distributionEXTRA_DIST = gazebo.i setup.py parse.py# Generate a OO interface file for libgazebo.  This is tweaked to# unable VPAPTH (distcheck) builds; the header files needed by swig# are copied into the build tree.gazebo_oo.i: ../../gazebo.h	if test ! -s ../../gazebo.h; then cp $(srcdir)/../../gazebo.h ../../; fi	if test ! -s gazebo.i; then cp $(srcdir)/gazebo.i .; fi	python $(srcdir)/parse.py ../../gazebo.h gazebo_oo.i# Use distutils to build modulepythonbuild: gazebo_oo.i ../../gazebo.h	python $(srcdir)/setup.py build# Normal cleanupclean-local:	rm -f gazebo.py *.pyc gazebo_oo.i	rm -rf buildinstall-data-hook: $(PYTHONINSTALL)# use distutils to installpythoninstall:	python $(srcdir)/setup.py install --prefix=$(prefix)# seems that distutils doesn't support 'uninstall', oh welluninstall-local:	echo 'Uninstall not implemented (sorry)'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?