File: rt.system

package info (click to toggle)
cl-ansi-tests 20060621-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,976 kB
  • ctags: 22,030
  • sloc: lisp: 134,790; makefile: 155
file content (22 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;-*- Mode:     Lisp -*-
;;;; Author:   Paul Dietz
;;;; Created:  Sat Mar  7 23:30:22 1998
;;;; Contains: Portable defsystem for RT testing system

(mk::defsystem "rt"
  :source-pathname #.(directory-namestring *LOAD-TRUENAME*)
  :binary-pathname #.(mk::append-directories
		      (directory-namestring *LOAD-TRUENAME*)
		      "binary/")
  :source-extension "lsp"
  :binary-extension
  	#+CMU #.(C::BACKEND-FASL-FILE-TYPE C::*TARGET-BACKEND*)
	#+ALLEGRO "fasl"
	#+(OR AKCL GCL) "o"
        #+CLISP "fas"
        #-(OR CMU ALLEGRO AKCL GCL CLISP)
        #.(pathname-type (compile-file-pathname "foo.lisp"))
  :components
  (
   "rt-package"
   ("rt" :depends-on ("rt-package"))))