From 1e05635a00b545f163bc7aaeaf8aa1d37c63943d Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 20 May 2023 19:02:23 +0530 Subject: 8.7: initial commit --- 8.7/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 8.7/Makefile (limited to '8.7/Makefile') diff --git a/8.7/Makefile b/8.7/Makefile new file mode 100644 index 0000000..1201253 --- /dev/null +++ b/8.7/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