mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-01-26 18:53:34 +00:00
11 lines
175 B
Makefile
11 lines
175 B
Makefile
A2X = a2x
|
|
|
|
MANPAGESRC = signal-cli.1
|
|
|
|
.PHONY: all
|
|
all: $(MANPAGESRC)
|
|
|
|
%: %.txt
|
|
@echo "Generating manpage for $@"
|
|
$(A2X) --no-xmllint --doctype manpage --format manpage "$^"
|