diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-09 16:22:43 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | a3535e28a74055c3b303dbb4111cb3d38c2817e2 (patch) | |
tree | edeb6a0e0d79f4adfa50c34fd7c5dcb44bcd7477 /src/lisp/Makefile | |
parent | e503e46f5e9ca57b7a7d976b2ee02a3d7812bc92 (diff) |
altos/lisp: Clean up OS integration bits, add defun
Provide an abstraction for the OS interface so that it
can build more cleanly on Linux and AltOS. Add defun macro.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/Makefile')
-rw-r--r-- | src/lisp/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lisp/Makefile b/src/lisp/Makefile index f7edbe41..9c99f05c 100644 --- a/src/lisp/Makefile +++ b/src/lisp/Makefile @@ -14,7 +14,6 @@ SRCS=\ ao_lisp_atom.c \ ao_lisp_int.c \ ao_lisp_poly.c \ - ao_lisp_prim.c \ ao_lisp_builtin.c \ ao_lisp_read.c \ ao_lisp_frame.c \ @@ -24,7 +23,7 @@ SRCS=\ OBJS=$(SRCS:.c=.o) -CFLAGS=-DAO_LISP_MAKE_CONST -O0 -g +CFLAGS=-DAO_LISP_MAKE_CONST -O0 -g -I. HDRS=\ ao_lisp.h \ |