From 6f84ebbb257064465be25100fb722ffb045cb0b1 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 8 May 2023 08:18:22 +0530 Subject: 6.3: using array of int --- 6.3/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 6.3/Makefile (limited to '6.3/Makefile') diff --git a/6.3/Makefile b/6.3/Makefile new file mode 100644 index 0000000..ca85182 --- /dev/null +++ b/6.3/Makefile @@ -0,0 +1,13 @@ +objects = main.o tree.o word.o getch.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +words : $(objects) + $(CC) $(CFLAGS) -o words $(objects) + +main.o : word.h tree.h +word.o : getch.h + +.PHONY : clean +clean: + rm words $(objects) -- cgit v1.2.3