mirror of
https://github.com/palera1n/palera1n
synced 2025-08-22 01:49:11 +00:00
10 lines
131 B
Makefile
10 lines
131 B
Makefile
PAGES = palera1n.1.html p1ctl.8.html
|
|
|
|
all: $(PAGES)
|
|
|
|
%.html: %
|
|
mandoc -T html -O style=mandoc.css $< > $@
|
|
|
|
clean:
|
|
rm -f $(PAGES)
|