summaryrefslogtreecommitdiff
path: root/man/Makefile
blob: 35a21b766088424b6a17b2e5282917ea8e88f022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include ../config.mk

SOURCES = ${shell echo *.pre}
TARGETS = ${SOURCES:.pre=.1}

all: ${TARGETS}

.pre.1:
	sed 's/\$$VERSION\$$/${VERSION}/g' < ${@:.1=.pre} > $@

clean:
	rm *.1

.SUFFIXES: .pre .1

.PHONY: clean