diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-10-04 21:28:46 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-10-04 21:28:46 +0300 |
commit | d4b67741a8edb86128e1f29071703785511b76e4 (patch) | |
tree | e4f6d2b6054230f1fe3af24f3cf8789dc7c3d9df /Makefile | |
parent | 440523669105875ef2a8239c6ee49e86d4cd257b (diff) |
fixed memory leaks in main
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |