📄 makefile.am
字号:
SUBDIRS = . panelsif ENABLE_WXGAZEBOnoinst_DATA = pythonbuildPYTHONINSTALL = pythoninstallendif# Files that go in the distributionEXTRA_DIST = wxgazebo setup.py __init__.py main.py panel.py image.py utils.c ids.py# Use distutils to build modulepythonbuild: if test ! -s wxgazebo; then cp $(srcdir)/wxgazebo .; fi if test ! -s utils.c; then cp $(srcdir)/utils.c .; fi python $(srcdir)/setup.py build# Normal cleanupclean-local: 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -