3 # 16.06.2006 Volker Quetschke
4 # A comparison with the empty string crashes dmake - equality test with empty
5 # string must work too.
12 trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15
14 # Remove files from prior failed run
17 # Remember to quote variables in generated makefiles( $ -> \$ ).
25 .IF \$(LHS) == \$(RHS)
33 output
=`eval ${DMAKEPROG} -r -f $file1`
36 if test "$output" != "true"; then
40 test $result -eq 0 && echo "Success - Cleaning up" && rm -f ${tmpfiles}
41 test $result -ne 0 && echo "Failure!"