nix-gh/substitute.mk

31 lines
1,023 B
Makefile
Raw Normal View History

2003-07-20 21:29:38 +02: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\@^$(bash)^g" \
-e "s^@curl\@^$(curl)^g" \
-e "s^@bzip2\@^$(bzip2_bin)/bzip2^g" \
-e "s^@bunzip2\@^$(bzip2_bin)/bunzip2^g" \
-e "s^@bzip2_bin_test\@^$(bzip2_bin_test)^g" \
2004-03-15 16:23:53 +01:00
-e "s^@perl\@^$(perl)^g" \
2005-03-15 13:03:15 +01:00
-e "s^@coreutils\@^$(coreutils)^g" \
-e "s^@sed\@^$(sed)^g" \
2005-03-15 13:03:15 +01:00
-e "s^@tar\@^$(tar)^g" \
2008-05-07 16:18:28 +02:00
-e "s^@gzip\@^$(gzip)^g" \
-e "s^@tr\@^$(tr)^g" \
-e "s^@dot\@^$(dot)^g" \
2006-03-01 14:25:08 +01:00
-e "s^@xmllint\@^$(xmllint)^g" \
-e "s^@xmlflags\@^$(xmlflags)^g" \
-e "s^@xsltproc\@^$(xsltproc)^g" \
2004-01-02 17:04:53 +01:00
-e "s^@version\@^$(VERSION)^g" \
2010-10-04 17:50:08 +02:00
-e "s^@testPath\@^$(coreutils):$$(dirname $$(type -p expr))^g" \
2003-07-20 21:29:38 +02:00
< $< > $@ || rm $@
2004-01-02 17:04:53 +01:00
if test -x $<; then chmod +x $@; fi