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