home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / printing / ghostscrip / source / specific / tar_gs < prev   
Encoding:
Text File  |  1991-10-25  |  625 b   |  20 lines

  1. if ( test -f $1/tar_gs ) then
  2.     echo Writing $1.tar.Z....
  3.     cd $1
  4.     ./tar_cat
  5.     rm -f arch.h gconfig.h gconfig.tr _temp_* libc*.tr q* t.*
  6.     echo quit >quit.ps
  7.     cd ..
  8.     tar cvf - $1/g*.asm $1/i*.asm $1/*.bat \
  9. $1/ansi2knr.c $1/ega.c $1/stream.c $1/trace.c $1/uniq.c $1/utrace.c \
  10. $1/g*.c $1/i*.c $1/z*.c $1/turboc.cfg \
  11. $1/*.doc $1/*.gsf $1/*.h $1/*.mak $1/*.man $1/*.ps \
  12. $1/*.sh $1/*.tr $1/tar_cat $1/tar_gs $1/Fontmap \
  13. $1/COPYING $1/LICENSE $1/README \
  14. $1/bdftops $1/ccgs $1/gsconfig $1/gsnd $1/gssetdev $1/pfbtops \
  15. | compress > $1.tar.Z
  16.     echo Wrote $1.tar.Z.
  17. else
  18.     echo The Ghostscript files must be in the directory ./$1.
  19. fi
  20.