-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathislisp-compat.asd
24 lines (23 loc) · 925 Bytes
/
islisp-compat.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
;;;; -*- Mode:Lisp; indent-tabs-mode:nil -*-
;;;; islisp-compat.asd
;;;; Copyright (c) 2011-2024 Derek Newhall
;;;;
;;;; The ASDF system definition.
;;;;
;;;; To use:
;;;; (require 'asdf)
;;;; (push *default-pathname-defaults* asdf:*central-registry*)
;;;; (asdf:load-system :islisp-compat)
(in-package :asdf-user)
(asdf:defsystem :islisp-compat
:description "A complete implementation of ISLisp running on top of Common Lisp"
:version "1.0.0"
:author "Derek Newhall"
:licence "CDDL-1.1"
:components ((:file "packages")
(:file "islisp-sys" :depends-on ("packages"))
(:file "bq" :depends-on ("packages"))
(:file "reader" :depends-on ("islisp-sys" "bq"))
(:file "functions" :depends-on ("packages" "islisp-sys" "reader"))
(:file "specials" :depends-on ("packages" "islisp-sys" "functions")))
:perform (load-op :after (op c) (provide :islisp-compat)))