altos/lisp: Share binary search for memory chunk between mark and move
[fw/altos] / src / lisp / Makefile
index 9c99f05cdfab15493ddf1fa399ef147e750d5f22..dd5a0cb44bf5ba4f55f04878c27b796e7d3536e4 100644 (file)
@@ -4,7 +4,7 @@ clean:
        rm -f ao_lisp_const.h $(OBJS) ao_lisp_make_const
 
 ao_lisp_const.h: ao_lisp_const.lisp ao_lisp_make_const
-       ./ao_lisp_make_const < ao_lisp_const.lisp > $@
+       ./ao_lisp_make_const -o $@ ao_lisp_const.lisp
 
 SRCS=\
        ao_lisp_make_const.c\
@@ -19,14 +19,18 @@ SRCS=\
        ao_lisp_frame.c \
        ao_lisp_lambda.c \
        ao_lisp_eval.c \
+       ao_lisp_rep.c \
+       ao_lisp_save.c \
+       ao_lisp_stack.c \
        ao_lisp_error.c 
 
 OBJS=$(SRCS:.c=.o)
 
-CFLAGS=-DAO_LISP_MAKE_CONST -O0 -g -I.
+CFLAGS=-DAO_LISP_MAKE_CONST -O0 -g -I. -Wall -Wextra -no-pie
 
 HDRS=\
        ao_lisp.h \
+       ao_lisp_os.h \
        ao_lisp_read.h
 
 ao_lisp_make_const:  $(OBJS)