summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-07 10:52:41 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-07 10:52:41 -0800
commitdc31167e9d4053fa000f52163afe74ea9d6fc751 (patch)
tree852e9619970b4b0a5ad5acbb07a34634b53e4bff /Makefile
parentaf75d8303c459594df0884204d20b8d8cb443c11 (diff)
Moved site building targets to _site/Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 4 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index b9235a5..fe781d6 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,6 @@ BENCHINP?=README.md
JSMODULES=$(wildcard js/lib/*.js)
SPEC=spec.txt
SITE=_site
-SPECVERSION=$(shell grep version: $(SPEC) | sed -e 's/version: *//')
BUILDDIR=build
PROG?=$(BUILDDIR)/src/cmark
@@ -75,22 +74,11 @@ fuzztest:
for i in `seq 1 10`; do \
time cat /dev/urandom | head -c 500000 | iconv -f latin1 -t utf-8 | tee fuzz-$$i.txt | $(PROG) > /dev/null && rm fuzz-$$i.txt ; done
-$(SITE)/index.html: spec.txt
- ./make_site_index.sh $(SPECVERSION) | \
- pandoc --template template.html -S -s -t html5 -o $@
+update-site: spec.html
+ make -C $(SITE) update
-$(SITE)/$(SPECVERSION)/index.html: spec.html
- mkdir -p $(SITE)/$(SPECVERSION)
- cp $< $@
- cd $(SITE); git add $(SPECVERSION)/index.html; git commit -a -m "Added version $(SPECVERSION) of spec"; cd ..
-
-$(SITE)/%: %
- cp $< $@
-
-update-site: $(SITE)/dingus.html $(SITE)/js/commonmark.js $(SITE)/index.html $(SITE)/$(SPECVERSION)/index.html $(SITE)/js/LICENSE
-
-upload-site:
- cd $(SITE) ; git pull; git commit -a -m "Updated site for latest spec, js" ; git push; cd ..
+upload-site: spec.html
+ make -C $(SITE) upload
distclean: clean
-rm -f js/commonmark.js