From 6023a709ed2fb5e9d7c91c713255e227e3804f78 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 20 May 2023 12:47:56 +0530 Subject: 8.6: initial commit --- 8.6/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 8.6/Makefile (limited to '8.6/Makefile') diff --git a/8.6/Makefile b/8.6/Makefile new file mode 100644 index 0000000..1201253 --- /dev/null +++ b/8.6/Makefile @@ -0,0 +1,12 @@ +OBJECTS = main.o malloc.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +main: $(OBJECTS) + $(CC) $(CFLAGS) -o main $(OBJECTS) + +main.o: malloc.h + +.PHONY: clean +clean: + rm -f main $(OBJECTS) -- cgit v1.2.3