-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkmp.asd
More file actions
33 lines (31 loc) · 892 Bytes
/
kmp.asd
File metadata and controls
33 lines (31 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#|
This file is a part of kmp project.
Copyright (c) 2013 Mike Bobak (bobak@balisp.org)
|#
(defun al (l) "asdf load" (asdf:oos 'asdf:load-op l))
#+quicklisp (defun ql (a) (ql:quickload a :verbose t :explain t))
#|
Author: Mike Bobak (bobak@balisp.org)
|#
(in-package :cl-user)
(eval-when (:compile-toplevel :load-toplevel :execute)
(unless (find-package :kmp-asd) ;added
(defpackage kmp-asd
(:use :cl :asdf))
))
(in-package :kmp-asd)
(defsystem kmp
:version "0.1"
:author "Mike Bobak"
:license "LLGPL?"
;:depends-on (:km)
;:depends-on (:ml)
:components ((:module "src"
:serial t
;(:file "owl2km") ;debug
:components (
;(:file "kmp") ;defpackage kmp, &rest use it
(:file "km_2-5-33")
(:file "u2")
(:file "util_mb")
))))