-
Notifications
You must be signed in to change notification settings - Fork 12
/
hemlock.clx.asd
27 lines (25 loc) · 1.05 KB
/
hemlock.clx.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
(defparameter *hemlock-base-directory*
(make-pathname :name nil :type nil :version nil
:defaults (parse-namestring *load-truename*)))
(asdf:defsystem :hemlock.clx
:pathname #.(make-pathname
:directory
(pathname-directory *hemlock-base-directory*)
:defaults *hemlock-base-directory*)
:depends-on (:hemlock.base :clx)
:components
((:module clx-1
:pathname #.(merge-pathnames
(make-pathname
:directory '(:relative "src"))
*hemlock-base-directory*)
:components
((:file "bit-stuff")
(:file "hunk-draw" :depends-on ("bit-stuff"))
(:file "bitmap-rompsite")
(:file "ioconnections")
(:file "bitmap-input")
(:file "bit-display" :depends-on ("hunk-draw"))
(:file "bit-screen")
(:file "bitmap-ext")))))