mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
10 lines
175 B
Makefile
10 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 "$^"
|