From 3f761f64d02480c81177e39af2f00f0e76b6f113 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 8 May 2023 16:59:02 +0530 Subject: 6.4: initial comiit --- 6.4/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 6.4/Makefile (limited to '6.4/Makefile') diff --git a/6.4/Makefile b/6.4/Makefile new file mode 100644 index 0000000..ca85182 --- /dev/null +++ b/6.4/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