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