Merge pull request #377 from asarhaddon/fix-runtests-pre-eval
[jackhill/mal.git] / common-lisp / stepA_mal.asd
index 63efad1..d8dc277 100644 (file)
@@ -5,9 +5,12 @@
     (load quicklisp-init)))
 
 (ql:quickload :uiop :silent t :verbose nil)
-(ql:quickload :cl-readline :silent t)
 (ql:quickload :cl-ppcre :silent t)
 (ql:quickload :genhash :silent t)
+(ql:quickload :alexandria :silent t)
+
+#-mkcl (ql:quickload :cl-readline :silent t)
+#+mkcl (load "fake-readline.lisp")
 
 (defpackage #:mal-asd
   (:use :cl :asdf))
@@ -27,4 +30,5 @@
                (:file "printer")
                (:file "core")
                (:file "stepA_mal"))
-  :depends-on (:uiop :cl-readline :cl-ppcre :genhash))
+  :depends-on (:uiop :cl-readline :cl-ppcre :genhash)
+  :pathname "src/")