3 # 01.06.2005 Volker Quetschke
4 # Tests for line continuation in recipes.
11 trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
13 trap 'rm -rf $tmpfiles' 1 2 3 15
15 # Remember to quote variables in generated makefiles( $ -> \$ ).
17 # Testing continuation char in recipes
27 output
=`eval ${DMAKEPROG} -r -f $file1`
29 if test "$output" != "line1line2"; then
35 test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
36 test $result -ne 0 && echo "Failure!"