summaryrefslogtreecommitdiff
path: root/src/lisp/Makefile
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-11-11 21:16:09 -0800
committerKeith Packard <keithp@keithp.com>2016-11-17 22:18:39 -0800
commit0fd008d75ca451ba68ad8ae773ea8a5ebc1785c5 (patch)
tree98485dc6304efce6c96774613fba5bf352cbd32a /src/lisp/Makefile
parentc8d2b9acf4b118f36a114de2af4db42ae04426ed (diff)
altos/lisp: Add save/restore infrastructure. Needs OS support to work.
This sticks a few globals past the end of the heap and then asks the OS to save the heap. On restore, the heap is re-populated by the OS and then various global variables reset. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/Makefile')
-rw-r--r--src/lisp/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lisp/Makefile b/src/lisp/Makefile
index aa542021..dac11f66 100644
--- a/src/lisp/Makefile
+++ b/src/lisp/Makefile
@@ -20,6 +20,7 @@ SRCS=\
ao_lisp_lambda.c \
ao_lisp_eval.c \
ao_lisp_rep.c \
+ ao_lisp_save.c \
ao_lisp_error.c
OBJS=$(SRCS:.c=.o)