10 lines
121 B
Makefile
10 lines
121 B
Makefile
.SUFFIXES: .txt .html
|
|
|
|
.txt.html:
|
|
asciidoc $<
|
|
|
|
all: $(addsuffix .html,$(basename $(wildcard *.txt)))
|
|
|
|
clean:
|
|
rm *.html
|