1 RSYNC_PARAMS
= --exclude-from
='.rsync-exclude' -avzLP
4 SRC
:= $(filter-out $(wildcard feed_
*),$(wildcard *.m4
))
5 OUTPUTS
:= $(patsubst %.m4
,out
/%.html
,$(SRC
))
6 STATIC
:= $(patsubst static
/%,out
/%,$(wildcard static
/*))
8 all: $(OUTPUTS
) out
/notes.atom out
/notes.rss out
/style.css
$(STATIC
)
10 out
/%.html
: %.m4 header.html footer.html
; m4
-D__latest
=$(LATEST
) $< > $@
11 out
/notes.atom
: feed_atom.m4
; m4
-D__latest
=$(LATEST
) $< > $@
12 out
/notes.rss
: feed_rss.m4
; m4
-D__latest
=$(LATEST
) $< > $@
13 $(STATIC
): ; ln
-s
$(PWD
)/static
/$(notdir $@
) $@
16 rsync
$(RSYNC_PARAMS
) out
/ abandali@bandali.eu.org
:www
/