home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / tiexplorer.zip / defsys.lsp next >
Text File  |  1986-09-22  |  522b  |  20 lines

  1.  
  2. ;-*- Mode:LISP; Package:USER; Base:10. -*-
  3.  
  4. ;;; See if packages KERMIT and IP exist - if not, create them!
  5. (PKG-FIND-PACKAGE "KERMIT" T)
  6. (PKG-FIND-PACKAGE "IP" T)
  7.  
  8. (defsystem KERMIT
  9.   (:name "KERMIT")
  10.   (:short-name "KERMIT")
  11.   (:pathname-default "KERMIT;")
  12.   (:patchable "KERMIT;")
  13.   (:initial-status :RELEASED)
  14.   (:compile-load ("KERMIT"))
  15.   (:compile-load ("SERIAL-CLOSE-FIX"))
  16. ;  (:compile-load ("VT100-CURSOR-FIX"))
  17.   (:compile-load ("VT100-CURSOR-KEY-FIX"))
  18.   (:compile-load ("SERIAL-TELNET")))
  19.  
  20.