blob: 7afda0c6a4126a6393552fbc60a397043e44f9ed [file] [log] [blame]
swissChili7a6f5eb2021-04-13 16:46:02 -07001init(lisp, lisp)
2
3preset(optimize)
4preset(32)
5preset(debug)
6preset(warn)
7
8archetype(c)
9
10OBJECTS = main.o lisp.o
11
12type(executable)
13
14run: lisp
15 status_log(RUN, ./lisp)
swissChilibed80922021-04-13 21:58:05 -070016 @./lisp "$$(cat test.lisp)"
17
18format:
19 status_log(FORMAT, *)
20 @clang-format -i *.c *.h
swissChili7a6f5eb2021-04-13 16:46:02 -070021
22finish