From e0b9da43b6311aa4413d030b27c6cdab000aeafd Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 13 May 2023 11:44:19 +0530 Subject: 7.4: initial commit --- 7.4/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 7.4/Makefile (limited to '7.4/Makefile') diff --git a/7.4/Makefile b/7.4/Makefile new file mode 100644 index 0000000..968458a --- /dev/null +++ b/7.4/Makefile @@ -0,0 +1,11 @@ +OBJECTS = main.o mscanf.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +scan : $(OBJECTS) + $(CC) $(CFLAGS) -o scan $(OBJECTS) + +.PHONY : clean + +clean : + rm -f scan $(OBJECTS) -- cgit v1.2.3