Skip to content
Snippets Groups Projects
Commit b335ab4f authored by ram's avatar ram
Browse files

Make a library file of all the fasls. Don't call build-toolkit-interface

when it isn't defined.
parent cde13a2c
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/clmcom.lisp,v 1.5 1993/05/15 18:24:06 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/clmcom.lisp,v 1.6 1993/07/22 21:24:36 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -49,7 +49,8 @@ ...@@ -49,7 +49,8 @@
(comf "target:motif/lisp/widgets" :load t) (comf "target:motif/lisp/widgets" :load t)
(comf "target:motif/lisp/main" :load t)) (comf "target:motif/lisp/main" :load t))
(xt::build-toolkit-interface) (when (fboundp 'xt::build-toolkit-interface)
(xt::build-toolkit-interface))
;;; Make sure that the INTERFACE package is defined before we start ;;; Make sure that the INTERFACE package is defined before we start
;;; talking about it. ;;; talking about it.
...@@ -67,3 +68,25 @@ ...@@ -67,3 +68,25 @@
;; It may be that the motifd server hasn't been (re)compiled yet. ;; It may be that the motifd server hasn't been (re)compiled yet.
(let ((interface:*interface-style* :tty)) (let ((interface:*interface-style* :tty))
(comf "target:interface/debug" :load t))) (comf "target:interface/debug" :load t)))
(cat-if-anything-changed
"target:interface/clm-library"
"target:motif/lisp/initial"
"target:motif/lisp/internals"
"target:motif/lisp/transport"
"target:motif/lisp/events"
"target:motif/lisp/conversion"
"target:motif/lisp/interface-glue"
"target:motif/lisp/xt-types"
"target:motif/lisp/string-base"
"target:motif/lisp/prototypes"
;"target:motif/lisp/interface-build"
"target:motif/lisp/callbacks"
"target:motif/lisp/widgets"
"target:motif/lisp/main"
"target:interface/initial"
"target:interface/interface"
"target:interface/inspect"
"target:interface/debug")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment