File: Makefile

package info (click to toggle)
networkd-dispatcher 2.2.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: python: 1,200; makefile: 20; sh: 10
file content (13 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
A2X = a2x
RM = rm -f

MAN_SRCs = networkd-dispatcher.txt
MAN_OUT  = $(MAN_SRCs:%.txt=%.8)

all: $(MAN_OUT)

clean:
	$(RM) $(MAN_OUT)

%.8: %.txt
	@$(A2X) --format manpage $<