built-sources-check.sh (automake-1.16.2.tar.xz) | : | built-sources-check.sh (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 47 | skipping to change at line 47 | |||
command1.inc: | command1.inc: | |||
echo 'dir/echo.sh' > $@ | echo 'dir/echo.sh' > $@ | |||
CLEANFILES = subrun.sh command1.inc | CLEANFILES = subrun.sh command1.inc | |||
END | END | |||
cat > dir/Makefile.am << 'END' | cat > dir/Makefile.am << 'END' | |||
BUILT_SOURCES = command2.inc | BUILT_SOURCES = command2.inc | |||
check_SCRIPTS = echo.sh | check_SCRIPTS = echo.sh | |||
echo.sh: | echo.sh: | |||
## The next line ensures that command1.inc has been built before | ## The next line ensures that command1.inc has been built before | |||
## recurring into the subdir. | ## recursing into the subdir. | |||
test -f ../command1.inc | test -f ../command1.inc | |||
(echo '#! /bin/sh'; cat command2.inc) > $@ | (echo '#! /bin/sh'; cat command2.inc) > $@ | |||
chmod +x $@ | chmod +x $@ | |||
command2.inc: | command2.inc: | |||
echo 'echo Hello' > $@ | echo 'echo Hello' > $@ | |||
CLEANFILES = echo.sh command2.inc | CLEANFILES = echo.sh command2.inc | |||
END | END | |||
$ACLOCAL | $ACLOCAL | |||
$AUTOCONF | $AUTOCONF | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |