1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/substitute.mk

24 lines
757 B
Makefile
Raw Normal View History

2003-07-20 15:29:38 -04: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_bin)/bzip2^g" \
-e "s^@bunzip2\@^$(bzip2_bin)/bunzip2^g" \
2004-03-15 10:23:53 -05:00
-e "s^@perl\@^$(perl)^g" \
2005-03-15 07:03:15 -05:00
-e "s^@coreutils\@^$(coreutils)^g" \
-e "s^@tar\@^$(tar)^g" \
-e "s^@dot\@^$(dot)^g" \
-e "s^@aterm_bin\@^$(aterm_bin)^g" \
2004-01-02 11:04:53 -05:00
-e "s^@version\@^$(VERSION)^g" \
2003-07-20 15:29:38 -04:00
< $< > $@ || rm $@
2004-01-02 11:04:53 -05:00
if test -x $<; then chmod +x $@; fi