diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-18 21:17:54 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-02-20 11:16:52 -0800 |
commit | 8f833f31f625526a5f1e9a1bd561733b5bb2bcaa (patch) | |
tree | f0b0981fc0b1847897634087c1fd6831101dfc9d /src/test | |
parent | 35424031747b41b1125e715a975f1679b89fc27a (diff) |
altos/lisp: Build new ao_lisp_stack.c into test and lambdakey
Helpful to include the new source file.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index 0eaa9421..a22abe46 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -91,7 +91,7 @@ ao_quaternion_test: ao_quaternion_test.c ao_quaternion.h AO_LISP_OBJS = ao_lisp_test.o ao_lisp_mem.o ao_lisp_cons.o ao_lisp_string.o \ ao_lisp_atom.o ao_lisp_int.o ao_lisp_eval.o ao_lisp_poly.o \ ao_lisp_builtin.o ao_lisp_read.o ao_lisp_rep.o ao_lisp_frame.o \ - ao_lisp_lambda.o ao_lisp_error.o ao_lisp_save.o + ao_lisp_lambda.o ao_lisp_error.o ao_lisp_save.o ao_lisp_stack.o ao_lisp_test: $(AO_LISP_OBJS) cc $(CFLAGS) -o $@ $(AO_LISP_OBJS) |