From f481f43596073d7f5cee231da901fb43d6af8366 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Thu, 11 May 2023 16:09:33 +0530 Subject: 7.2: initial commit --- 7.2/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 7.2/Makefile (limited to '7.2/Makefile') diff --git a/7.2/Makefile b/7.2/Makefile new file mode 100644 index 0000000..982c7a2 --- /dev/null +++ b/7.2/Makefile @@ -0,0 +1,11 @@ +objects = main.o getch.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +fmt : $(objects) + $(CC) $(CFLAGS) -o fmt $(objects) +main.o: getch.h + +.PHONY : clean +clean: + rm fmt $(objects) -- cgit v1.2.3