summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-25 01:41:00 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-25 01:41:00 +0100
commitfc750d1d9303776cf00971b5fbf1a1c3e5d45c16 (patch)
tree6ef0bfb0c31ed898f22b9d7d8cf03a5e0c337203 /Makefile
parent15b883e68f620592cafada6ef7f6c698a2c216c2 (diff)
fix
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 944c62e..b465312 100644
--- a/Makefile
+++ b/Makefile
@@ -48,9 +48,9 @@ run_std: main
modules: $(MODULE_SO)
@echo "All modules built successfully."
-modules/%.so: modules/%.c lisp.o
+modules/%.so: modules/%.c
gcc -fPIC -c $< -o $*.o
- gcc -fPIC -shared $*.o lisp.o -o $@ $(MODULE_LIBS)
+ gcc -fPIC -shared $*.o -o $@ $(MODULE_LIBS)
rm $*.o
.PHONY: clean test run