Changed Makefile to convert all .txt files.
[gmpc-handbook.git] / Makefile
blobdc4e3f6c1c7eba72b439c12a40ab64c58dabf215
1 PARAMS=-a toc -a toclevels=3 -a date=$(shell date +%Y-%m-%d) -a numbered -d book
4 all: html
6 html: $(patsubst %.txt,%.html,$(wildcard *txt))
8 clean:
9 @$(RM) $(wildcard *.html)
11 %.html: %.txt
12 asciidoc $(PARAMS) $<
14 .PHONY: clean