File: Makefile

package info (click to toggle)
stateless-openpgp-docs 13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: sh: 951; ansic: 279; makefile: 49; python: 36
file content (21 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f

cmds = sopv sopv-version sopv-verify sopv-inline-verify

output = $(addsuffix .1, $(cmds))

all: $(output)

%.1: %.1.ronn index.txt
	ronn --roff \
	--manual='Stateless OpenPGP Signature Verification' \
	--organization='sopv 1.1' \
	$<

clean:
	rm -f $(output)

check:
	codespell --ignore-words .ignore-words $(addsuffix .1.ronn, $(cmds))

.PHONY: all clean check