mirror of
https://github.com/NixOS/nix
synced 2025-07-08 11:03:54 +02:00
9 lines
231 B
Makefile
9 lines
231 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^@wget\@^$(wget)^g \
|
|
< $< > $@ || rm $@
|
|
chmod +x $@
|