rebuilding repo
[cl-graph.git] / dev / cl-graph.system
1 ;;; -*- Mode: Lisp; package: CL-USER; Syntax: Common-lisp; Base: 10 -*-
2
3 #|
4
5 Copyright 199?-2002 Experimental Knowledge Systems Lab, University of Massachusetts Amherst
6 Professor Paul Cohen, Director
7
8 Author: Westy, et. al.  (most recent working over by Gary King, Brent Heeringa, Louis Theran)
9
10 |#
11
12 (in-package :COMMON-LISP-USER)
13
14 ;;; ---------------------------------------------------------------------------
15 ;;; glu Utilities
16 ;;; ---------------------------------------------------------------------------
17
18 (glu-define-logical-pathname-translations (cl-graph)
19   (source)
20   (utils (:back :back "utils" "dev"))
21   (lift  (:back :back "lift" "dev")))
22
23 ;;; ---------------------------------------------------------------------------
24
25 (setf (glu-system-source-file 'lift)
26       "cl-graph:lift;lift.system")
27
28
29 ;;; ---------------------------------------------------------------------------
30 ;;; system definition 
31 ;;; ---------------------------------------------------------------------------
32
33 (define-glu-system :cl-graph 
34   ((("package"
35
36      "macros"
37      "graph"
38      "graph-container"
39      "graph-matrix"
40      "graph-metrics"
41      #+NotYet "graph-generation"
42      "graph-algorithms"
43      "graphviz-support"))
44    
45    ;; associates
46    (("notes")
47     :associates? t))
48   
49   :base-dir "cl-graph:source;"
50   :bin-identifiers (:platform :vendor)
51   :include-in-menu nil
52   :top-level nil
53   :depends-on (:metatilities :cl-containers metabang.bind :cl-mathstats)
54   :test-system :test-cl-graph)
55
56 ;;; ---------------------------------------------------------------------------
57
58 (define-glu-system :test-cl-graph 
59   ("test-graph"
60    "test-graph-container"
61    "test-graph-metrics"
62    "test-graph-algorithms")
63   :base-dir "cl-graph:source;"
64   :bin-identifiers (:platform :vendor)
65   :include-in-menu nil
66   :top-level nil
67   :depends-on (:cl-graph))
68
69
70 ;;; ***************************************************************************
71 ;;; *                              End of File                                *
72 ;;; ***************************************************************************