1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-03 07:31:00 +01:00
nix/substitute.mk
2003-11-24 12:10:16 +00:00

11 lines
313 B
Makefile

%: %.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_triplet)^g" \
-e "s^@wget\@^$(wget)^g" \
< $< > $@ || rm $@
chmod +x $@