;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (load-system :hu.dwim.asdf) (in-package :hu.dwim.asdf) (defsystem :hu.dwim.brainfuck :class hu.dwim.system :description "Initial template for a new hu.dwim like project." :depends-on (:cffi :command-line-arguments :flexi-streams :hu.dwim.common :hu.dwim.def :hu.dwim.defclass-star :hu.dwim.partial-eval :hu.dwim.syntax-sugar+hu.dwim.walker :hu.dwim.util.production) :components ((:module "source" :components ((:file "package") (:file "brainfuck" :depends-on ("package"))))))