forked from lix-project/lix
5d2b424804
"i686-linux" instead of "i686-suse-linux").
12 lines
309 B
Makefile
12 lines
309 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^@system\@^$(system)^g" \
|
|
-e "s^@wget\@^$(wget)^g" \
|
|
< $< > $@ || rm $@
|
|
chmod +x $@
|