# HG changeset patch # User Oleksandr Gavenko # Date 1320415116 -7200 # Node ID 509886d148b2cc111fdd4db439dc74971644e717 # Parent 9462290b54985cebe4c2247517f874b2f056d35a Split values. diff -r 9462290b5498 -r 509886d148b2 Makefile --- a/Makefile Wed Nov 02 20:11:29 2011 +0200 +++ b/Makefile Fri Nov 04 15:58:36 2011 +0200 @@ -34,7 +34,8 @@ TXT_FILES := $(wildcard *.txt) HTML_DIR := tips-html -HTML_FILES := $(patsubst %.rst,$(HTML_DIR)/%.html,$(RST_FILES)) $(HTML_DIR)/index.html $(HTML_DIR)/index-frame.html +RST_HTML_FILES := $(patsubst %.rst,$(HTML_DIR)/%.html,$(RST_FILES)) +HTML_FILES := $(RST_HTML_FILES) $(HTML_DIR)/index.html $(HTML_DIR)/index-frame.html TXT__FILES := $(addprefix $(HTML_DIR)/,$(TXT_FILES)) CHM_FILES := $(addprefix $(HTML_DIR)/,chm.hhp chm.hhc chm.stp) @@ -53,7 +54,7 @@ $(HTML_DIR)/%.html: %.rst rst.css | $(HTML_DIR) $(RST2HTML) --stylesheet=rst.css $*.rst $@ -$(HTML_DIR)/index.html: index.sh $(filter-out $(HTML_DIR)/index.html,$(HTML_FILES)) | $(HTML_DIR) +$(HTML_DIR)/index.html: index.sh $(RST_HTML_FILES) | $(HTML_DIR) ./index.sh frame >$@ $(HTML_DIR)/%.html: %.html | $(HTML_DIR)