-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlamber.asd
More file actions
28 lines (26 loc) · 953 Bytes
/
lamber.asd
File metadata and controls
28 lines (26 loc) · 953 Bytes
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
28
;;;; SPDX-FileCopyrightText: Artyom Bologov
;;;; SPDX-License-Identifier: BSD-2 Clause
(in-package :asdf)
(defsystem "lamber"
:description "Lamber is a minimalist functional language compiling to pure Lambda Calculus."
:author "Artyom Bologov"
:homepage "https://github.com/aartaka/lamber"
:bug-tracker "https://github.com/aartaka/lamber/issues"
:source-control (:git "https://github.com/aartaka/lamber.git")
:license "BSD-2 Clause"
:version "0.0.0"
:serial t
:build-operation "program-op"
:build-pathname "lamber"
:entry-point "lamber::entry-point"
:components ((:module "lamber"
:pathname "source/"
:components
((:file "package")
(:file "utils")
(:file "reader")
(:file "inferrer")
(:file "compiler")
(:file "evaluator")
(:file "printer")
(:file "cli")))))