a9858c9f26
possible. This test fails right now because this hasn't been implemented right now. Yes, I'm doing Test-Driven Development! ;-)
20 lines
605 B
Makefile
20 lines
605 B
Makefile
%: %.in Makefile
|
|
sed \
|
|
-e "s^@extra1\@^$(extra1)^g" \
|
|
-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^@storedir\@^$(storedir)^g" \
|
|
-e "s^@system\@^$(system)^g" \
|
|
-e "s^@shell\@^$(shell)^g" \
|
|
-e "s^@curl\@^$(curl)^g" \
|
|
-e "s^@bzip2\@^$(bzip2)^g" \
|
|
-e "s^@bunzip2\@^$(bunzip2)^g" \
|
|
-e "s^@perl\@^$(perl)^g" \
|
|
-e "s^@version\@^$(VERSION)^g" \
|
|
< $< > $@ || rm $@
|
|
if test -x $<; then chmod +x $@; fi
|