;;; -*- Mode: lisp -*- ;;; This is just a sample of building series with MK defsystem. You ;;; may need to change :source-pathname appropriately for your system. #+cmu (mk:defsystem base-clx :source-pathname "cl-library:;cmucl-clx;" :source-extension "lisp" :banner "CLX" :components (:serial "package" "depdefs" "clx" "dependent" "macros" "bufmac" "buffer" "display" "gcontext" "input" "requests" "fonts" "graphics" "text" "attributes" "translate" "keysyms" "manager" "image" "resource")) #+cmu (mk:defsystem cmucl-clx :source-pathname "cl-library:;cmucl;" :source-extension "lisp" :depends-on ("base-clx" "cmucl-graystream") :components ((:file "code;clx-ext") (:file "hemlock;charmacs") (:file "hemlock;key-event") (:file "hemlock;keysym-defs") #+nil (:file "code;inspect")))