File: Makefile

package info (click to toggle)
adequate 0.17.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: python: 254; makefile: 111; sh: 75; ansic: 29
file content (19 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: all
all: adequate.1

adequate.md: manpage.header manpage.footer tags.desc
	cd ../private && go run gen-markdown-manpage.go

# This should depend on adequate.md, but it doesn't to keep things simple.
# (That target depends on the adequate binary to get the list of tags, and
# that's not necessarily built before the manpage.)
adequate.1:
	go-md2man -in=adequate.md -out=adequate.1

manpage-preview:
	man -l adequate.1

.PHONY: clean
clean:

# vim:ts=4 sts=4 sw=4 noet