📄 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 + -