binaryninja/scc-docs/Makefile
Giulio De Pasquale 52e9dc828b dindon
2018-12-13 18:39:52 +00:00

14 lines
266 B
Makefile

HTML := $(patsubst %.txt,%.html,$(wildcard *.txt))
TXT := $(wildcard *.txt)
all: $(HTML)
.PHONY: all clean
$(HTML): %.html: %.txt docs.conf Makefile
asciidoc -b html5 --conf-file=docs.conf -a stylesheet="$(CURDIR)/lib/v35.css" -a icons $<
clean:
rm -f *.html