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

14 lines
409 B
Makefile
Raw Normal View History

2003-07-20 15:29:38 -04: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" \
-e "s^@libexecdir\@^$(libexecdir)^g" \
-e "s^@system\@^$(system)^g" \
-e "s^@wget\@^$(wget)^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