File: rt.system

package info (click to toggle)
gcl27 2.7.1-13
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 30,888 kB
  • sloc: lisp: 211,946; ansic: 52,944; sh: 9,347; makefile: 647; tcl: 53; awk: 52
file content (22 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (20)
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"))))