10 lines
113 B
Makefile
10 lines
113 B
Makefile
.SUFFIXES: .txt .html
|
|
|
|
.txt.html:
|
|
asciidoc $<
|
|
|
|
all: recoll-mingw.html recoll-windows.html
|
|
|
|
clean:
|
|
rm -f *.html
|