makefile

来自「linux下编程用 编译软件」· 代码 · 共 47 行

TXT
47
字号
SUBDIRS 	:= announce downloads docs faq events cp-toolsifndef WMK  export WMK=wmkendififndef WML  export WML=wmlendifWML_SRC = $(wildcard *.wml)WML_OBJS = $(patsubst %.wml,%.html,$(WML_SRC))all : $(WML_OBJS) subdirs%.texinfo :	cp ../$(notdir $(@)) docs# home and news html includes newsitems.txt so we list that here explicitlyhome.html: home.wml include/macros.wml include/layout.wml newsitems.txt	$(WML) -o $@ $<news.html: news.wml include/macros.wml include/layout.wml newsitems.txt	$(WML) -o $@ $<%.html: %.wml include/macros.wml include/layout.wml	$(WML) -o $@ $<.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 "mkdir -p $(CLASSPATH_WEBROOT)/$(dir);\	         cd $(dir) && $(MAKE) publish";)	-cp -f *.html $(CLASSPATH_WEBROOT)	-cp -f *.css $(CLASSPATH_WEBROOT)	# -cp -f *.jpg $(CLASSPATH_WEBROOT)

⌨️ 快捷键说明

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