?? makefile
字號:
#### Makefile -- Build procedure for sample xslt Apache module## Autogenerated via ``apxs -n xslt -g''.##builddir=$(shell pwd)top_srcdir=/opt/apachetop_builddir=/opt/apache/shareinclude /opt/apache/share/build/special.mk# the used toolsAPXS=/opt/apache/sbin/apxsAPACHECTL=/opt/apache/sbin/apachectl# additional defines, includes and librariesDEF=-DMOD_XSLT_DEBUG=1INC=-I$(top_srcdir)/includeLIB= -lxml2 -lxslt# the default targetall: local-shared-build# install the shared object file into Apache install: install-modules# cleanupclean: -rm -f mod-xslt.o mod-xslt.lo mod-xslt.slo mod-xslt.la # install and activate shared object by reloading Apache to# force a reload of the shared object filereload: stop install start# the general Apache start/restart/stop# proceduresstart: $(APACHECTL) startrestart: $(APACHECTL) restart $(APACHECTL) restartstop: $(APACHECTL) stop
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -