Merge branch 'master' of github.com:wenkokke/sf

No clue.
This commit is contained in:
wadler 2018-04-12 18:31:27 -03:00
commit 303f13ded4

View file

@ -2,7 +2,7 @@ agda := $(wildcard src/*.lagda)
agdai := $(wildcard src/*.agdai)
markdown := $(subst src/,out/,$(subst .lagda,.md,$(agda)))
all: $(markdown)
all: bugfix $(markdown)
out/%.md: src/%.lagda
mkdir -p out
@ -72,3 +72,9 @@ $(HOME)/agda2html-master/:
stack install
.phony: serve build clean clobber macos-setup travis-setup
# workaround for a bug in agda2html
bugfix:
@mkdir -p out
@touch out/Nat.md
.phony: bugfix