commit | 7a6f5eb6f0a93e908ef65b7b38de2d0b86956807 | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Tue Apr 13 16:46:02 2021 -0700 |
committer | swissChili <swisschili@fastmail.com> | Tue Apr 13 16:46:02 2021 -0700 |
tree | ba29e54f9f1b48b2633b7eb25aaa282fbc43070b | |
parent | e84917417e62c0870d9cb3a995de5a80593721bf [diff] [blame] |
Beginning of Lisp parser
diff --git a/src/lisp/Jmk b/src/lisp/Jmk new file mode 100644 index 0000000..5fc5fc4 --- /dev/null +++ b/src/lisp/Jmk
@@ -0,0 +1,18 @@ +init(lisp, lisp) + +preset(optimize) +preset(32) +preset(debug) +preset(warn) + +archetype(c) + +OBJECTS = main.o lisp.o + +type(executable) + +run: lisp + status_log(RUN, ./lisp) + @./lisp + +finish