aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-10-04 21:28:46 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-10-04 21:28:46 +0300
commitd4b67741a8edb86128e1f29071703785511b76e4 (patch)
treee4f6d2b6054230f1fe3af24f3cf8789dc7c3d9df /Makefile
parent440523669105875ef2a8239c6ee49e86d4cd257b (diff)
fixed memory leaks in main
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b3e5061..36c6b05 100644
--- a/Makefile
+++ b/Makefile
@@ -15,9 +15,9 @@ build/integral.o: src/integral.c build
task4: build/roots.o build/integral.o src/main.c
$(CC) $(CFLAGS) -o $@ $^ -lm -ldl
-.PHONY: run clean
+.PHONY: clean
-run: task4
+run:
./task4
clean: