mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-12 14:55:36 +00:00
10 lines
99 B
Makefile
10 lines
99 B
Makefile
|
FILES=lunatic.html lunacon.html
|
||
|
|
||
|
%.html: %.txt
|
||
|
asciidoc $<
|
||
|
|
||
|
all: $(FILES)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(FILES)
|