diff --git a/makefile b/makefile
index 372fac2..7784947 100644
--- a/makefile
+++ b/makefile
@@ -1,14 +1,14 @@
 # Build a release of 'tbku' using 'make'
-# $Id: makefile,v 1.101 2008/03/11 18:29:14 tundra Exp $
+# $Id: makefile,v 1.102 2008/03/11 19:21:44 tundra Exp $
 # Requires a modern 'make' like GNU.
 
-
 # Uncomment One Of The Following For Early Releases
 
 #EARLY     = Alpha
 #EARLY     = Beta
 #EARLY     = RC1
 
+
 #####
 # Definitions Relevant To This Program
 #####
@@ -22,7 +22,7 @@
 DOCSOURCES = ${PROGNAME}-license.txt ${PROGNAME}.txt  CHANGELOG.txt Makefile WHATSNEW.txt \
              Imaging-FreeBSD-With-tbku.txt Imaging-SUSE-Linux-With-tbku.txt
 
-DOCFILES   = ${PROGNAME}.1.gz ${PROGNAME}.html ${PROGNAME}.pdf ${PROGNAME}.ps  \
+DOCFILES   = ${PROGNAME}.1.gz ${PROGNAME}.html ${PROGNAME}.pdf ${PROGNAME}.ps  ${PROGNAME}.sh.ps\
              Imaging-FreeBSD-With-tbku.html Imaging-SUSE-Linux-With-tbku.html  \
              Imaging-FreeBSD-With-tbku.pdf Imaging-SUSE-Linux-With-tbku.pdf    \
              Imaging-FreeBSD-With-tbku.ps Imaging-SUSE-Linux-With-tbku.ps
@@ -32,7 +32,6 @@
 # Nothing Should Need To Change Below This Line
 #####
 
-
 DIR          = ${PORTNAME}-${VERSION}
 HEADER1      = "WHATSNEW For '${PROGNAME}' ${VERSION}    (`date`)"
 HEADER2      = "----------------------------------------------------------------------"
@@ -78,11 +77,13 @@
 %.py.ps: %.py
 	@enscript -Epython -fCourier8 -i2 -L77 -C --mark-wrapped-lines=arrow -p$@ $<
 
+%.sh.ps: %
+	@enscript -Esh -fCourier8 -i2 -L77 -C --mark-wrapped-lines=arrow -p$@ $<
+
 %.txt: %.1
 	@groff -man -Tascii $< | col -xb >$@
 
 
-
 #####
 # Actual Build Rules
 #####
@@ -101,6 +102,7 @@
 clean:
 	@rm -rf  ${DIR} ${DOCFILES} ${PORTNAME} ${PROGFILES} ${DOCSOURCES} ${TARBALL} ${TMPFILE} \
              *.1 *.aux *.log *.out *.core *~
+
 docs: ${DOCSOURCES} ${DOCFILES} 
 	@chmod 644 ${DOCFILES} ${DOCSOURCES}
 	@chmod 644 *.gz *.txt
@@ -118,5 +120,3 @@
 
 version:
 	@echo ${VERSION}
-
-