about summary refs log tree commit diff
path: root/substitute.mk
blob: 5038bd4bfd9fa772ad780734eb383d0d7ac47e37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%: %.in Makefile
	sed \
	 -e "s^@extra1\@^$(extra1)^g" \
	 -e "s^@prefix\@^$(prefix)^g" \
	 -e "s^@bindir\@^$(bindir)^g" \
	 -e "s^@sysconfdir\@^$(sysconfdir)^g" \
	 -e "s^@localstatedir\@^$(localstatedir)^g" \
	 -e "s^@datadir\@^$(datadir)^g" \
	 -e "s^@libexecdir\@^$(libexecdir)^g" \
	 -e "s^@storedir\@^$(storedir)^g" \
	 -e "s^@system\@^$(system)^g" \
	 -e "s^@shell\@^$(shell)^g" \
	 -e "s^@curl\@^$(curl)^g" \
	 -e "s^@bzip2\@^$(bzip2_bin)/bzip2^g" \
	 -e "s^@bunzip2\@^$(bzip2_bin)/bunzip2^g" \
	 -e "s^@bzip2_bin_test\@^$(bzip2_bin_test)^g" \
	 -e "s^@perl\@^$(perl)^g" \
	 -e "s^@coreutils\@^$(coreutils)^g" \
	 -e "s^@tar\@^$(tar)^g" \
	 -e "s^@dot\@^$(dot)^g" \
	 -e "s^@xmllint\@^$(xmllint)^g" \
	 -e "s^@xmlflags\@^$(xmlflags)^g" \
	 -e "s^@xsltproc\@^$(xsltproc)^g" \
	 -e "s^@aterm_bin\@^$(aterm_bin)^g" \
	 -e "s^@version\@^$(VERSION)^g" \
	 -e "s^@testPath\@^$(coreutils):$$(dirname $$(type -P expr))^g" \
	 < $< > $@ || rm $@
	if test -x $<; then chmod +x $@; fi