From 437cb5d7eb0b071326b831fb604da34240b27588 Mon Sep 17 00:00:00 2001 From: Kapliuk Date: Wed, 13 Mar 2024 21:00:00 +0000 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B8=D0=B4=D0=B0=D0=BB=D0=B8=D1=82?= =?UTF-8?q?=D0=B8=20'cv4/makefile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv4/makefile | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 cv4/makefile diff --git a/cv4/makefile b/cv4/makefile deleted file mode 100644 index d47331f..0000000 --- a/cv4/makefile +++ /dev/null @@ -1,37 +0,0 @@ -### If you wish to use extra libraries (math.h for instance), -### add their flags here (-lm in our case) in the "LIBS" variable. - -LIBS = -lm - -### -CFLAGS = -std=c99 -CFLAGS += -g -CFLAGS += -Wall -CFLAGS += -Wextra -CFLAGS += -pedantic -CFLAGS += -Werror -CFLAGS += -Wmissing-declarations -CFLAGS += -DUNITY_SUPPORT_64 -DUNITY_OUTPUT_COLOR - -ASANFLAGS = -fsanitize=address -ASANFLAGS += -fno-common -ASANFLAGS += -fno-omit-frame-pointer - -.PHONY: test -test: tests.out - @./tests.out - -.PHONY: memcheck -memcheck: ./*.c ./*.h - @echo Compiling $@ - @$(CC) $(ASANFLAGS) $(CFLAGS) test-framework/unity.c ./*.c -o memcheck.out $(LIBS) - @./memcheck.out - @echo "Memory check passed" - -.PHONY: clean -clean: - rm -rf *.o *.out *.out.dSYM - -tests.out: ./*.c ./*.h - @echo Compiling $@ - @$(CC) $(CFLAGS) test-framework/unity.c ./*.c -o tests.out $(LIBS)