summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-20 22:43:37 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2025-12-20 22:43:37 +0100
commit6506e5c3d24f01b3a662a58884e210f4c9e023b8 (patch)
tree00cd6c02a9eefb12890f88f1c5b20fd8d2b7c9a4 /Makefile
parentdc0074b1accf92ce2e1fa126dccf702722f11611 (diff)
cleanup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2dc8a02..4ff9837 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ YACC = bison
CC = gcc -g
CFLAGS = -DYYDEBUG=1
LIBS = -lreadline -lfl -lm
+.SUFFIXES:
lisp: lisp.c lisp.tab.o lex.yy.o
$(CC) $(CFLAGS) -o $@ lisp.c lisp.tab.o lex.yy.o $(LIBS)