makefile

来自「开放源代码的WEB服务器」· 代码 · 共 28 行

TXT
28
字号
## Dummy Makefile used with makegen.## NOTE : The TOP variable must be set to reflect the top of the# src tree (either relative or absolute)#TOP=.TARGETS= all install clean$(TARGETS) :: Makefile.full	@$(MAKE) -f Makefile.full $@Makefile.full :: $(TOP)/Site.mm Makefile.tmpl	@$(TOP)/makegen/makegen $(TOP) ;\	echo "Done."very-clean: clean	rm src/config.h	rm -f config.cache config.log config.status	rm -f Site.mmbackup:	@cd .. ;\	TODAY=`date +%y-%m-%d` ;\	tar -cf libhttpd-$${TODAY}.tar libhttpd; \	gzip -9 libhttpd-$${TODAY}.tar

⌨️ 快捷键说明

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