File: Makefile

package info (click to toggle)
auto-apt-proxy 11
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 136 kB
  • sloc: sh: 108; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all: auto-apt-proxy.1

auto-apt-proxy.1: auto-apt-proxy.pod
	pod2man --verbose --name auto-apt-proxy -c '' -r '' --utf8 $< $@ || ($(RM) $@; false)

auto-apt-proxy.pod: README.md
	sed -e 's/^#/=head1/; s|\*\*\([^\*]*\)\*\*|B<\1>|g; s|\*\([^\*]*\)\*|I<\1>|g' $< > $@ || ($(RM) $@; false)

clean:
	$(RM) auto-apt-proxy.1 auto-apt-proxy.pod

.PHONY: check test

test: check

check:
	-shellcheck --shell dash auto-apt-proxy