;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.quasi-quote :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.system" :description "Quasi quoted domain specific languages and transformations." :depends-on (:babel :babel-streams :hu.dwim.common :hu.dwim.defclass-star+hu.dwim.def :hu.dwim.syntax-sugar :hu.dwim.syntax-sugar/lambda-with-bang-args :hu.dwim.util :hu.dwim.walker) :components ((:module "source" :components ((:file "package") (:file "duplicates" :depends-on ("package")) (:module "generic" :depends-on ("duplicates") :components ((:file "util") (:file "syntax" :depends-on ("util")) (:file "transformation" :depends-on ("util" "syntax")) (:file "list" :depends-on ("syntax" "transformation" "util")) (:file "bivalent" :depends-on ("transformation" "syntax" "string" "binary" "util")) (:file "binary" :depends-on ("transformation" "syntax" "util")) (:file "string" :depends-on ("transformation" "syntax" "binary" "util"))))))))