From 8a00a65c66914b7dbbf7c3c594d94698f11629dc Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Thu, 11 May 2023 21:10:32 +0530 Subject: 7.3: initial commit, no printf was abused in the process fractional number support is not complete, but most things should work. --- 7.3/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 7.3/Makefile (limited to '7.3/Makefile') diff --git a/7.3/Makefile b/7.3/Makefile new file mode 100644 index 0000000..434eecd --- /dev/null +++ b/7.3/Makefile @@ -0,0 +1,12 @@ +objects = main.o mprintf.o +CC = gcc +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +print : $(objects) + $(CC) $(CFLAGS) -o print $(objects) -lm + +main.o : mprintf.h + +.PHONY : clean +clean : + rm print $(objects) -- cgit v1.2.3