nix-super/substitute.mk

12 lines
313 B
Makefile
Raw Normal View History

2003-07-20 22:29:38 +03:00
%: %.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" \
2003-11-24 14:10:16 +02:00
-e "s^@host\@^$(host_triplet)^g" \
-e "s^@wget\@^$(wget)^g" \
2003-07-20 22:29:38 +03:00
< $< > $@ || rm $@
chmod +x $@