52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
|
DESTDIR = $(HOME)/public_html
|
||
|
|
||
|
TEMPLATE = template.xml
|
||
|
MDWNTOHTML = ./mdwntohtml $(TEMPLATE)
|
||
|
|
||
|
# HTML to be generated
|
||
|
HTML = index.html
|
||
|
|
||
|
# Things to copy
|
||
|
COPY += mdwntohtml template.xml
|
||
|
COPY += face.png geneweb.cgi gitweb.cgi
|
||
|
COPY += format.css default.css print.css
|
||
|
COPY += gitweb.cgi git-logo.png gitweb.css gitweb.conf
|
||
|
|
||
|
# Directories in which %.mdwn generates %.html
|
||
|
PLAIN = . papers poems misc
|
||
|
|
||
|
# Other targets for "make all"
|
||
|
TARGETS = html copy $(DESTDIR)/tmp $(DESTDIR)/footer.xml $(DESTDIR)/projects
|
||
|
|
||
|
all: default
|
||
|
|
||
|
include */*.mk
|
||
|
|
||
|
$(DESTDIR)/%.html: %.mdwn $(TEMPLATE)
|
||
|
@mkdir -p $(dir $@)
|
||
|
$(MDWNTOHTML) < $< > $@
|
||
|
|
||
|
$(DESTDIR)/%: %
|
||
|
@mkdir -p $(dir $@)
|
||
|
cp $< $@
|
||
|
|
||
|
$(DESTDIR)/tmp:
|
||
|
mkdir -p $@
|
||
|
|
||
|
$(DESTDIR)/footer.xml: $(TEMPLATE)
|
||
|
awk '(/FOOT/) { a += 1; next; } (a == 1) { print; }' $< > $@
|
||
|
|
||
|
$(DESTDIR)/projects:
|
||
|
ln -s $(HOME)/projects $@
|
||
|
|
||
|
default: $(TARGETS)
|
||
|
|
||
|
MDWN = $(wildcard $(addsuffix /*.mdwn, $(PLAIN)))
|
||
|
HTML += $(patsubst %.mdwn, %.html, $(MDWN))
|
||
|
|
||
|
html: $(addprefix $(DESTDIR)/, $(HTML))
|
||
|
copy: $(addprefix $(DESTDIR)/, $(COPY))
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(wildcard $(DESTDIR)/*)
|