about summary refs log tree commit diff
path: root/substitute.mk
blob: 1f09f73b9ae0a41d605b5d58e90c31d635c54f30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
%: %.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^@host\@^$(host_triplet)^g" \
	 -e "s^@wget\@^$(wget)^g" \
	 < $< > $@ || rm $@
	chmod +x $@