1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00
mal/impls/common-lisp/step6_file.asd

35 lines
943 B
Plaintext
Raw Permalink Normal View History

2016-11-02 10:21:14 +03:00
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
2016-11-20 22:36:05 +03:00
(ql:quickload :uiop :silent t)
(ql:quickload :cl-ppcre :silent t)
(ql:quickload :genhash :silent t)
(ql:quickload :alexandria :silent t)
2016-11-02 10:21:14 +03:00
#-mkcl (ql:quickload :cl-readline :silent t)
#+mkcl (load "fake-readline.lisp")
2016-11-02 10:21:14 +03:00
(defpackage #:mal-asd
(:use :cl :asdf))
(in-package :mal-asd)
(defsystem "step6_file"
:name "MAL"
:version "1.0"
:author "Iqbal Ansari"
:description "Implementation of step 6 of MAL in Common Lisp"
:serial t
:components ((:file "utils")
(:file "types")
(:file "env")
(:file "reader")
(:file "printer")
(:file "core")
(:file "step6_file"))
:depends-on (:uiop :cl-readline :cl-ppcre :genhash)
:pathname "src/")