make, swift3: fix parsing empty literal sequences.
[jackhill/mal.git] / common-lisp / step1_read_print.asd
index 33c6d44..814538c 100644 (file)
@@ -4,10 +4,13 @@
   (when (probe-file quicklisp-init)
     (load quicklisp-init)))
 
-(ql:quickload :uiop)
-(ql:quickload :cl-readline)
-(ql:quickload :cl-ppcre)
-(ql:quickload :genhash)
+(ql:quickload :uiop :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))
@@ -25,4 +28,5 @@
                (:file "reader")
                (:file "printer")
                (:file "step1_read_print"))
-  :depends-on (:uiop :cl-readline :cl-ppcre :genhash))
+  :depends-on (:uiop :cl-readline :cl-ppcre :genhash)
+  :pathname "src/")