guix/substitute.mk

10 lines
231 B
Makefile
Raw Normal View History

2003-07-20 19:29:38 +00: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^@wget\@^$(wget)^g \
2003-07-20 19:29:38 +00:00
< $< > $@ || rm $@
chmod +x $@