mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 20:13:04 +01:00
13 lines
304 B
Makefile
13 lines
304 B
Makefile
|
MANFILES = toxic.1 toxic.conf.5
|
||
|
|
||
|
# Targets
|
||
|
doc: $(MANFILES)
|
||
|
|
||
|
%: %.asc
|
||
|
@echo " Generating man page $(@F)"
|
||
|
@a2x -f manpage -a revdate=$(shell git log -1 --date=short --format="%ad" $<) \
|
||
|
-a manmanual="toxic manual" -a mansource=toxic \
|
||
|
-a manversion=__VERSION__ -a datadir=__DATADIR__ $<
|
||
|
|
||
|
.PHONY: doc
|