From 746ea2a4ed3d395a7460ce627c64a2e1a222bc7e Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 20 May 2023 20:23:20 +0530 Subject: 8.8: initial commit --- 8.8/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 8.8/Makefile (limited to '8.8/Makefile') diff --git a/8.8/Makefile b/8.8/Makefile new file mode 100644 index 0000000..eaa18c7 --- /dev/null +++ b/8.8/Makefile @@ -0,0 +1,12 @@ +OBJECTS = main.o malloc.o +CC = gcc +CFLAGS = -g -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