# # This step creates or overwrites an existing output_file.isthmus # I feel it is valid to replace an older file because this is a # new compilation. The old file is therefore no longer valid. # Furthermore replacing the file instead of continually appending # to it will save disk space. sem-check > output_file.isthmus echo "Semantic Check Passed" demeter >> output_file.isthmus echo "Demeter Environment Generated" isthmus-cd >> output_file.isthmus echo "Class Dictionary Interface Created" echo -n "Copy Imakefile.sample to Imakefile? [y] " set ci=($<) if ($ci == "y" || $ci == "Y" || $ci == "") cp Imakefile.sample Imakefile echo -n "Copy main_tcl.C.sample to main.C? [y] " set ci=($<) if ($ci == "y" || $ci == "Y" || $ci == "") cp main_tcl.C.sample main.C echo -n "Copy main.tcl.sample to main.tcl? [y] " set ci=($<) if ($ci == "y" || $ci == "Y" || $ci == "") cp main.tcl.sample main.tcl gen-make >> output_file.isthmus echo "Makefile Generated" isthmus-pp *.pp >> output_file.isthmus echo "Propagation Pattern Interface Created" demeter >> output_file.isthmus echo "Application Created" echo "Screen Output Printed to File output_file.isthmus"