84e0ef02483677c111b0323246f86f1edc6c8e56
[jackhill/mal.git] / common-lisp / step9_try.asd
1 #-quicklisp
2 (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
3 (user-homedir-pathname))))
4 (when (probe-file quicklisp-init)
5 (load quicklisp-init)))
6
7 (ql:quickload :uiop :silent t)
8 (ql:quickload :cl-readline :silent t)
9 (ql:quickload :cl-ppcre :silent t)
10 (ql:quickload :genhash :silent t)
11
12 (defpackage #:mal-asd
13 (:use :cl :asdf))
14
15 (in-package :mal-asd)
16
17 (defsystem "step9_try"
18 :name "MAL"
19 :version "1.0"
20 :author "Iqbal Ansari"
21 :description "Implementation of step 9 of MAL in Common Lisp"
22 :serial t
23 :components ((:file "utils")
24 (:file "types")
25 (:file "env")
26 (:file "reader")
27 (:file "printer")
28 (:file "core")
29 (:file "step9_try"))
30 :depends-on (:uiop :cl-readline :cl-ppcre :genhash))