1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/substitute.mk

12 lines
305 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^@host\@^$(host)^g" \
-e "s^@wget\@^$(wget)^g" \
2003-07-20 15:29:38 -04:00
< $< > $@ || rm $@
chmod +x $@