diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-03 21:49:50 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | 9fe33ce12f30da223e3ef83dfe12afaa751d509d (patch) | |
tree | 72799eb7e57a994d3ecfe510979e10bf3e9fd7b9 /src/lisp/Makefile | |
parent | 71bf5774083e7f0d87ea609a73d6cfb7f60de9d9 (diff) |
altos: Add lambda support to lisp
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/Makefile')
-rw-r--r-- | src/lisp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lisp/Makefile b/src/lisp/Makefile index 9e2fb58c..be19b432 100644 --- a/src/lisp/Makefile +++ b/src/lisp/Makefile @@ -17,7 +17,8 @@ SRCS=\ ao_lisp_prim.c \ ao_lisp_builtin.c \ ao_lisp_read.c \ - ao_lisp_frame.c + ao_lisp_frame.c \ + ao_lisp_error.c OBJS=$(SRCS:.c=.o) |