summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6eebe56..2c5f2bf 100644
--- a/Makefile
+++ b/Makefile
@@ -43,9 +43,6 @@ PUBURL = public.asc
.conf.htmlfooter:
mkwb html -F $< > $@
-.conf.htmllisting:
- mkwb indexbody $< > $@
-
.adoc.snippets:
mkwb snippets $< > $@
@@ -90,8 +87,8 @@ articles.sortdata = $(articles.adoc:.adoc=.sortdata)
articles.categorydata = $(articles.adoc:.adoc=.categorydata)
listings.htmlheader = $(listings.adoc:.adoc=.htmlheader)
listings.htmlfooter = $(listings.adoc:.adoc=.htmlfooter)
-listings.htmllisting = $(listings.adoc:.adoc=.htmllisting)
listings.html = $(listings.adoc:.adoc=.html)
+indexes.htmllisting = $(indexes.adoc:.adoc=.htmllisting)
categories.htmllisting = $(categories.adoc:.adoc=.htmllisting)
categories.txt = $(categories.adoc:.adoc=.txt)
categories.xml = $(categories.adoc:.adoc=.xml)
@@ -150,6 +147,7 @@ all-contents = \
derived-assets = \
$(dynamic-contents) \
$(contents.gz) \
+ $(sources.html) \
$(sources.htmlbody) \
$(sources.snippets) \
$(sources.snippets.gz) \
@@ -165,7 +163,9 @@ derived-assets = \
$(articles.categorydata) \
$(listings.htmlheader) \
$(listings.htmlfooter) \
- $(listings.htmllisting) \
+ $(listings.html) \
+ $(indexes.htmllisting) \
+ $(categories.htmllisting) \
$(categories.txt) \
$(categories.xml) \
$(categories.xml.gz) \
@@ -224,6 +224,9 @@ src/global.conf: src/base.conf
$(listings.html):
cat $*.htmlheader $*.htmllisting $*.htmlbody $*.htmlfooter > $@
+$(indexes.htmllisting):
+ mkwb indexbody $*.conf > $@
+
$(categories.htmllisting):
mkwb categoriesbody $*.conf > $@