From 29af05de1994802e315de989316f3d854a146624 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sun, 14 May 2023 16:04:57 +0530 Subject: 7.8: initial commit --- 7.8/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 7.8/Makefile (limited to '7.8/Makefile') diff --git a/7.8/Makefile b/7.8/Makefile new file mode 100644 index 0000000..98452fc --- /dev/null +++ b/7.8/Makefile @@ -0,0 +1,13 @@ +OBJECTS = main.o fileprint.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +print : $(OBJECTS) + $(CC) $(CFLAGS) -o print $(OBJECTS) + +main.o : fileprint.h + +.PHONY : clean + +clean : + rm -f print $(OBJECTS) -- cgit v1.2.3