blob: 293d2b726e35488cbe2f961b1f568d05d9f64619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include ../config.mk
SOURCES = ${shell echo *.pre}
TARGETS = ${SOURCES:.pre=.1}
all: ${TARGETS}
.pre.1:
sed \
-e 's/\$$VERSION\$$/${VERSION}/g' \
-e 's/\$$DATE\$$/'"$$(date '+%B %d, %Y')"/g \
< ${@:.1=.pre} > $@
clean:
rm -f *.1
.SUFFIXES: .pre .1
.PHONY: clean
|