#PRINT-SOURCE-TXT
#!/bin/csh

#Version Of September 2, 1992 - David Loveman, Digital Equipment Corporation

cat README > temp$$
echo \ >> temp$$

cat PRINT-SOURCE-TXT >> temp$$
echo \ >> temp$$

cat CLEANUP >> temp$$
echo \ >> temp$$

cat MAKE-HPF-REPORT >> temp$$
echo \ >> temp$$

cat hpf-report.tex >> temp$$
echo \  >> temp$$

cat MAKE-HPF-CHAPTER >> temp$$
echo \  >> temp$$

cat chapter-head.tex >> temp$$
echo \  >> temp$$

cat syntax-macs.tex >> temp$$
echo \  >> temp$$

cat credits.tex | fmt >> temp$$
echo \  >> temp$$

cat overview.tex | fmt >> temp$$
echo \  >> temp$$

cat terms.tex | fmt >> temp$$
echo \  >> temp$$

cat distribution.tex | fmt >> temp$$
echo \  >> temp$$

cat statements.tex | fmt >> temp$$
echo \  >> temp$$

cat intrinsics.tex | fmt >> temp$$
echo \  >> temp$$

cat foreign.tex | fmt >> temp$$
echo \  >> temp$$

cat sequence.tex | fmt >> temp$$
echo \  >> temp$$

cat hpf-subset.tex | fmt >> temp$$
echo \  >> temp$$

cat appendixes.tex | fmt >> temp$$
echo \  >> temp$$

cat bibliography.tex | fmt >> temp$$

lpr -Oportrait -i5 temp$$
rm temp$$

echo "done"

