guix/substitute.mk

20 lines
605 B
Makefile
Raw Normal View History

2003-07-20 19:29:38 +00:00
%: %.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)^g" \
-e "s^@bunzip2\@^$(bunzip2)^g" \
2004-03-15 15:23:53 +00:00
-e "s^@perl\@^$(perl)^g" \
2004-01-02 16:04:53 +00:00
-e "s^@version\@^$(VERSION)^g" \
2003-07-20 19:29:38 +00:00
< $< > $@ || rm $@
2004-01-02 16:04:53 +00:00
if test -x $<; then chmod +x $@; fi