File: Makefile

package info (click to toggle)
equivs 2.3.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: perl: 302; sh: 14; makefile: 11
file content (10 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
MANPAGES := equivs-control.1 equivs-build.1
BUILD_DATE = $(shell LC_ALL=C date -u +'%d %b %Y' -d "@$(SOURCE_DATE_EPOCH)")

%.1: %.pod
	pod2man -s 1 -r "$(BUILD_DATE)" -c "Debian" -d ' ' $< > $@

all: $(MANPAGES)

clean:
	rm -f $(MANPAGES)