1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 18:18:51 +03:00
mal/common-lisp/step5_tco.asd
2016-11-21 01:21:16 +05:30

31 lines
842 B
Common Lisp

#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
(ql:quickload :uiop :silent t)
(ql:quickload :cl-readline :silent t)
(ql:quickload :cl-ppcre :silent t)
(ql:quickload :genhash :silent t)
(defpackage #:mal-asd
(:use :cl :asdf))
(in-package :mal-asd)
(defsystem "step5_tco"
:name "MAL"
:version "1.0"
:author "Iqbal Ansari"
:description "Implementation of step 5 of MAL in Common Lisp"
:serial t
:components ((:file "utils")
(:file "types")
(:file "env")
(:file "reader")
(:file "printer")
(:file "core")
(:file "step5_tco"))
:depends-on (:uiop :cl-readline :cl-ppcre :genhash))