Skip to content

Commit

Permalink
Add Makefile rules for building a snapshot with respec on the command…
Browse files Browse the repository at this point in the history
… line.
  • Loading branch information
hober committed Jul 7, 2021
1 parent 4f5a63c commit 87f3bd2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
.PHONY: all clean update-toc

all: build/index.html update-toc

clean:
rm -rf build *~

build:
mkdir -p build

build/%.html: %.html Makefile build
respec --src $< --out $@

update-toc:
doctoc README.md

0 comments on commit 87f3bd2

Please sign in to comment.