summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 14:21:34 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 14:21:34 +0100
commitb86d3361836935297c6aedb0318ed8a34e4c52f0 (patch)
treec879fa3ce234be1625914cbcc5e1ab39f0955ba8 /Makefile
parente6aeef5e54759c26912c4987cb86b3add2d77349 (diff)
refactor lisp.h into public lisp_api.h and internal lisp.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a04723e..6feb95e 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ OBJS = lisp.o lisp.tab.o lex.yy.o
main: main.c $(OBJS)
$(CC) $(CFLAGS) -o $@ main.c $(OBJS) $(LIBS)
-lisp.o: lisp.c lisp.h lex.yy.o
+lisp.o: lisp.c lisp_api.h lisp.h lex.yy.o
$(CC) $(CFLAGS) -c lisp.c
lisp.tab.c lisp.tab.h: lisp.y