From de5a6d39938d70b07ee7380839b1116dcf26b518 Mon Sep 17 00:00:00 2001 From: Nick White Date: Thu, 29 Apr 2010 09:42:34 +0100 Subject: A hundred tiny improvements --- Makefile | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 14732a2..7779d64 100644 --- a/Makefile +++ b/Makefile @@ -15,27 +15,22 @@ all: $(TARGETS) $(GZIP) $(TARGETS): includes/header.xml includes/footer.xml $(RSS): $(PAGES) makerss.sh - @echo making $@ - @sh makerss.sh $(SITENAME) $(FOAF) $* > $@ - -index.xml: index.txt includes/header-index.xml includes/footer.xml - @echo making $@ - @sed "s/TITLE/`head -n 1 < $<`/" < includes/header-index.xml > $@ - @$(MARKDOWN) $< >> $@ - @sed "s/MODDATE/`ls -lc --time-style=+%Y-%m-%d $<|awk '{print $$6}'`/" < includes/footer.xml >> $@ + echo making $@ + sh makerss.sh $(SITENAME) $(FOAF) $* > $@ .txt.xml: - @echo making $@ - @sed "s/TITLE/`head -n 1 < $<`/" < includes/header.xml > $@ - @$(MARKDOWN) $< >> $@ - @sed "s/MODDATE/`ls -lc --time-style=+%Y-%m-%d $<|awk '{print $$6}'`/" < includes/footer.xml >> $@ + echo making $@ + sed "s/TITLE/`head -n 1 < $<`/" < includes/header.xml > $@ + $(MARKDOWN) $< >> $@ + sed "s/MODDATE/`ls -lc --time-style=+%Y-%m-%d $<|awk '{print $$6}'`/" < includes/footer.xml >> $@ # not POSIX compatible %.gz: % - @echo compressing $< - @gzip < $< > $@ + echo compressing $< + gzip < $< > $@ clean: rm -f -- $(TARGETS) $(GZIP) .SUFFIXES: .txt .xml .rdf .gz +.SILENT: -- cgit v1.2.3