home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / gcl-1.000 / gcl-1 / gcl-1.0 / xbin / dos-files < prev    next >
Encoding:
Text File  |  1992-11-24  |  1.1 KB  |  22 lines

  1. #!/bin/sh
  2. OBJS=`find ./ \( -type f -o -type l \) -a -print  | sed -e "/~/d" -e "/#/d" -e "/.*\.o/d"   -e "/.*TAGS/d"  -e "/standard-kcl/d" -e "/core/d" -e "/saved/d" -e "/raw/d"  -e "/rsym$/d" -e "/merge$/d" -e "/dpp$/d" -e "/-$/d" -e "/installed_kcl/d"    -e "/^[^V]*\/cmpinclude.h/d" -e "/config\.h/d" -e "/_aos/d" -e  "/gazonk/d" -e "/\.out/d"  -e "/print_doc$/d"  -e "/foo/d" -e "/akcllib/d" -e "/\.fn/d" -e "/collectfn.[cdh]/d" -e "/Vmakefile/d" -e "/ps2_/d"  -e "/.*\.a$/d"   -e "/test\//d" -e "/tmpx/d" -e "/V\//d" -e "/xbin\//d" -e "/mpi-386.s/d" `
  3.  
  4. rm -f unixport/akcldos.lsp
  5. (cd unixport ; make -f makefile.dos "CC=gcc -DVOL=volatile " AKCLDIR=/akcl akcldos.lsp)
  6.  
  7. OTHERS="xbin/*.bat  tmpxx_.tem"
  8. echo ${OBJS} ${OTHERS} 
  9. rm -f ${HOME}/tmp/akclsrc.zip 
  10. zip  -p ${HOME}/tmp/akclsrc.zip  ${OBJS} ${OTHERS}
  11.  
  12. # get a patched h/cmpinclude.h 
  13. ./xbin/file-sub h/dos-go32.h h/cmpinclude.h "Begin for cmpinclud" "End for cmpinclud"
  14.  
  15. if [ -d /tmp/h ] ; then true ; else mkdir /tmp/h ; fi
  16. mv tmpx /tmp/h/cmpinclude.h
  17. cd /tmp
  18. zip -p ${HOME}/tmp/akclsrc.zip h/cmpinclude.h
  19. rm -f h/cmpinclude.h
  20.  
  21.  
  22.