File: external-program.asd

package info (click to toggle)
acl2 7.2dfsg-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 198,968 kB
  • ctags: 182,300
  • sloc: lisp: 2,415,261; ansic: 5,675; perl: 5,577; xml: 3,576; sh: 3,255; cpp: 2,835; makefile: 2,440; ruby: 2,402; python: 778; ml: 763; yacc: 709; csh: 355; php: 171; lex: 162; tcl: 44; java: 24; asm: 23; haskell: 17
file content (44 lines) | stat: -rw-r--r-- 1,576 bytes parent folder | download
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
34
35
36
37
38
39
40
41
42
43
44
;;; Copyright 2006-2008 Greg Pfeil
;;; Distributed under the LLGPL (see LICENSE file)

(defpackage external-program-system
  (:use #:cl #:asdf))

(in-package :external-program-system)

(defsystem external-program
  :author "Greg Pfeil <greg@technomadic.org>"
  :licence "LLGPL"
  :version "0.0.6"
  :pathname "src/"
  :components ((:file "external-program")
               (:file "utilities" :depends-on ("external-program"))
               (:file #+allegro "allegro"
                      #+armedbear "armedbear"
                      #+clisp "clisp"
                      #+cmu "cmucl"
                      #+ecl "ecl"
                      ;; #+gcl "gcl"
                      ;; #+liquid "liquid"
                      #+lispworks "lispworks"
                      ;; #+lucid "lucid"
                      #+openmcl "openmcl"
                      #+sbcl "sbcl"
                      ;; #+scl "scieneer"
                      #-(or allegro armedbear clisp cmu ecl lispworks openmcl
                            sbcl)
                      "unsupported"
                      :depends-on ("utilities")))
  :in-order-to ((test-op (load-op external-program-test)))
  :perform (test-op :after (op c)
                    (funcall (intern "RUN!" :external-program-tests)
                             (intern "TESTS" :external-program-tests))))

(defmethod operation-done-p
    ((op test-op) (c (eql (find-system :external-program))))
  (values nil))

(defsystem external-program-test
  :depends-on (external-program fiveam)
  :pathname "tests/"
  :components ((:file "tests")))