-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathorg.middleangle.cl-blapack.asd
29 lines (24 loc) · 1.02 KB
/
org.middleangle.cl-blapack.asd
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
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(in-package :cl-user)
(defpackage :org.middleangle.cl-blapack-asd
(:nicknames :cl-blapack-asd)
(:use :cl :asdf))
(in-package :org.middleangle.cl-blapack-asd)
;; Copyright rif 2006.
;; Modified BSD License (see LICENSE file in this directory).
(defsystem :org.middleangle.cl-blapack
:depends-on (:cffi :org.middleangle.foreign-numeric-vector)
:components
((:file "packages")
(:file "features" :depends-on ("packages"))
(:file "bugfix" :depends-on ("packages" "features"))
(:file "load-blapack-libs" :depends-on ("packages" "bugfix"))
(:file "blapack-cffi-types" :depends-on ("packages" "bugfix"))
(:file "blas-cffi" :depends-on ( "load-blapack-libs"
"blapack-cffi-types"
"bugfix"))
(:file "lapack-cffi" :depends-on ("load-blapack-libs"
"blapack-cffi-types"
"bugfix"))
(:file "cl-blapack" :depends-on ("packages" "bugfix"
"blas-cffi" "lapack-cffi"))))