aboutsummaryrefslogtreecommitdiff
path: root/lux-cl/commands.md
diff options
context:
space:
mode:
authorEduardo Julian2021-05-25 01:55:09 -0400
committerEduardo Julian2021-05-25 01:55:09 -0400
commit2df8e4bc8c53a831f3cd8605707ca08d66cecb02 (patch)
tree839af4a3c1b2c1629946111d58373946d367becc /lux-cl/commands.md
parentf01e246f468c948d41423248809443570f48c7a4 (diff)
Updates for Common-Lisp compiler.
Diffstat (limited to 'lux-cl/commands.md')
-rw-r--r--lux-cl/commands.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/lux-cl/commands.md b/lux-cl/commands.md
new file mode 100644
index 000000000..baefd65b7
--- /dev/null
+++ b/lux-cl/commands.md
@@ -0,0 +1,23 @@
+# Common Lisp compiler
+
+## Test
+
+```
+cd ~/lux/lux-cl/ && lein lux auto test
+cd ~/lux/lux-cl/ && lein clean && lein lux auto test
+```
+
+## Build
+
+```
+## Develop
+cd ~/lux/lux-cl/ \
+&& lein clean \
+&& lein lux auto build
+```
+
+## Try
+
+```
+cd ~/lux/lux-cl/ && java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux
+```