about summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2023-06-26 16:14:12 +0900
committerNguyễn Gia Phong <cnx@loang.net>2023-06-26 16:26:23 +0900
commit6b5b671957d80321b5d6018cde1d3a2a7ffa0847 (patch)
tree3645896f1b6d090659945d0ac4f6c86e7c7de28c /Makefile
parentac735667ce21579ec319a310148afc0f5512492c (diff)
downloadpx-6b5b671957d80321b5d6018cde1d3a2a7ffa0847.tar.gz
Begin page 9
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 035b8ca..4f37502 100644
--- a/Makefile
+++ b/Makefile
@@ -11,20 +11,20 @@ THUMBNAILS := $(patsubst %.jpg,%.small.jpg,$(PICTURES))
 DATA := $(wildcard */index.xml) index.xml
 PAGES := $(patsubst %.xml,%.xhtml,$(DATA))
 OUTPUTS := $(THUMBNAILS) $(PAGES) atom.xml
-ALL := $(OUTPUTS) $(PICTURES) favicon.png style.css
+ALL := $(OUTPUTS) $(PICTURES) favicon.svg style.css
 
 all: $(OUTPUTS)
 
 %.small.jpg: %.jpg
 	epeg -w 1024 -p -q 80 $< $@
 
-index.xml: 08/index.xml
+index.xml: 09/index.xml
 	ln -fs $< $@
 
 %.xhtml: %.xml page.xslt
 	xsltproc page.xslt $< > $@
 
-atom.xml: atom.xslt $(DATA) $(wildcard *.svg)
+atom.xml: atom.xslt $(DATA) cc.svg by.svg sa.svg
 	xsltproc atom.xslt > atom.xml
 
 clean: