blob: c3a13fb9188907d45ab1ea44eb83be46292907ed (
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 *.1
.SUFFIXES: .pre .1
.PHONY: clean
|