-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolre.asd
25 lines (24 loc) · 984 Bytes
/
resolre.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
;;;; resolre.asd
;;;;
;;;; Copyright Izaak Walton (C) 2023
(asdf:defsystem #:resolre
:version "0.0.1"
:author "Izaak Walton <[email protected]>"
:license "GNU General Purpose License"
:description "A Brainfuck compiler using Solfege/Solresol syllables"
:serial t
:build-operation program-op
:build-pathname "resolre"
:entry-point "resolre::resolre"
:components ((:module "src"
:serial t
:components ((:file "laresolre") ; package
(:file "larelasi") ; cell list/array
(:file "resolremi") ; commands
(:file "solrela-sisolla") ;lexical-analysis
(:file "mirefami") ; main
(:file "solsolredo") ; brainfuck conversions
(:file "soldosol"))) ; interpreter
(:module "examples"
:serial t
:components ((:file "examples")))))