about summary refs log tree commit diff
path: root/substitute.mk
blob: 73a93963f192f0575052eb1dc1aa6c5a76f22e34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%: %.in Makefile
	sed \
	 -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^@wget\@^$(wget)^g" \
	 -e "s^@perl\@^$(perl)^g" \
	 -e "s^@version\@^$(VERSION)^g" \
	 < $< > $@ || rm $@
	if test -x $<; then chmod +x $@; fi