From b7c333d192cfa93dcfd41275309b4cf0b60a066b Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sun, 14 May 2023 11:17:20 +0530 Subject: 7.6: initital commit --- 7.6/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 7.6/Makefile (limited to '7.6/Makefile') diff --git a/7.6/Makefile b/7.6/Makefile new file mode 100644 index 0000000..b428b03 --- /dev/null +++ b/7.6/Makefile @@ -0,0 +1,11 @@ +OBJECTS = main.c +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +scan : $(OBJECTS) + $(CC) $(CFLAGS) -o comp $(OBJECTS) + +.PHONY : clean + +clean : + rm -f comp -- cgit v1.2.3