3 # 17.09.2005 Volker Quetschke
4 # Test for line continuation in comments.
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
23 # A continued comment line followed/ended by an empty line \
32 output
=`eval ${DMAKEPROG} -r -f $file1`
35 # The space between aaa and bbb comes from the +=
36 if test "$output" != "aaa bbb"; then
42 test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
43 test $result -ne 0 && echo "Failure!"