;;; -*- Mode: LISP; Package: :cl-user; BASE: 10; Syntax: ANSI-Common-Lisp; -*- ;;; ;;; Touched: Sat Nov 19 13:37:00 2005 +0530 ;;; Time-stamp: <2007-09-09 22:49:16 madhu> ;;; Bugs-To: enometh@net.meer ;;; Copyright (C) 2005 Madhu. All rights Reserved ;;; (in-package "CL-USER") (pushnew :dbg *features*) #+nil (progn (load "home:cmu/kr_2.3.4/sysdcl") (mk:oos "KR" :load :compile-during-load t) (pushnew :kr *features*)) #+nil (progn (lc "home:cl/mytrie") (pushnew :mytrie *features*)) (defvar *xword-source-directory* #p"home:/clisp/xword.git/") (defvar *xword-binary-directory* (binary-directory *xword-source-directory*)) (mk:defsystem :xword :source-pathname *xword-source-directory* :binary-pathname *xword-binary-directory* :source-extension "lisp" :components ( "dongeddis-grid" "package" "xword-grid" ; "charset-ordered" "charset-fixnum" ;; <--- ACTIVE #+trie "dict-trie" ; "dict-hash" "dict-array" ;; <-- ACTIVE "key-space" ; "plist" ; "grid-class" ; "constraint" ; "props" ; "fill" #+kr "fill-kr" )) (mk:oos :xword :load :compile-during-load t)