3 # 03.08.2007 Volker Quetschke
4 # Check that the .PRECIOUS attribute works.
9 tmpfiles
="$file1 $file2"
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( $ -> \$ ).
21 .REMOVE : ; @echo remove \$<
34 output1
=`eval ${DMAKEPROG} -rf $file1 2>&1 `
37 if test "$output1" != "Done"; then
38 echo "Wrong result: $output1"
44 if test $result1 -eq 0 ; then
45 echo "Success - Cleaning up"