3 # 22.06.2006 Volker Quetschke
4 # Conditional expressions failed before with line continuations.
11 trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
13 # Remove files from prior failed run
16 # Remember to quote variables in generated makefiles ( $ -> \$ ).
17 # Also quote line continuations ( \<nl> -> \\<nl> ).
31 output
=`eval ${DMAKEPROG} -r -f $file1`
34 if test "$output" != "OK"; then
38 test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
39 test $result -ne 0 && echo "Failure!"