⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 gcc的组建
💻
字号:
ifndef WMK  export WMK=wmkendififndef WML  export WML=wmlendifWML_SRC = $(wildcard *.wml)WML_OBJS = $(patsubst %.wml,%.html,$(WML_SRC))%.html: %.wml ../include/macros.wml  ../include/layout.wml	$(WML) -o $@ $<#	-rm -f $(patsubst %.wml,%.html,$<)all : $(WML_OBJS) subdirs.PHONY : cleanclean :	$(foreach dir, $(SUBDIRS), sh -c "cd $(dir) && $(MAKE) clean";)	-rm -f *.html.PHONY : subdirssubdirs :	$(foreach dir, $(SUBDIRS), sh -c "cd $(dir) && $(MAKE)";).PHONY : publishpublish : 	@sh -c "if [ "$(CLASSPATH_WEBROOT)x" = x ]; then echo 'You must set CLASSPATH_WEBROOT in your environment first'; exit 1; fi"	@sh -c "if [ ! -d $(CLASSPATH_WEBROOT) ]; then echo 'You must set CLASSPATH_WEBROOT in your environment first'; exit 1; fi"	$(foreach dir, $(SUBDIRS), sh -c "cd $(dir) && $(MAKE) publish";)	-cp -f *.html $(CLASSPATH_WEBROOT)/events/

⌨️ 快捷键说明

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