#!/bin/sh # 06.02.2006 Volker Quetschke # Verify that the .SETDIR attribute works separately from the target # definition. (issue 61714) : ${DMAKEPROG:=dmake} file1="mfile1.mk" file2="subdir" tmpfiles="$file1 $file2" trap '{ echo "trapped signal - removing temporary files" ; rm -rf $tmpfiles ; }' 1 2 3 15 # Remove files from prior failed run rm -rf $tmpfiles # Remember to quote variables in generated makefiles( $ -> \$ ). cat > $file1 <