chiark / gitweb /
Checking if CLISP is started with the -ansi option
[clg] / tools / clg-tools.asd
CommitLineData
0adab0e9 1;;; -*- Mode: lisp -*-
2
3(defpackage #:clg-tools
5ed2c9b4 4 (:use #:common-lisp #:asdf))
0adab0e9 5
6
7(in-package #:clg-tools)
8
6d0c1491 9#+clisp
10(unless custom:*ansi*
11 (error "CLISP must be started with the -ansi option"))
0adab0e9 12
13(defsystem clg-tools
0adab0e9 14 :components ((:file "autoexport")
9a25addd 15 (:file "utils")
16 (:file "config" :depends-on ("utils"))
46da7a2f 17 (:file "asdf-extensions" :depends-on ("utils"))))
0adab0e9 18