From 563cea897121b33cc5e98dc6ed3a36eb39d52766 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sat, 13 May 2023 14:52:00 +0530 Subject: 7.5: initial commit, 4.10 with scanf instead of getchar --- 7.5/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 7.5/Makefile (limited to '7.5/Makefile') diff --git a/7.5/Makefile b/7.5/Makefile new file mode 100644 index 0000000..43c5a6f --- /dev/null +++ b/7.5/Makefile @@ -0,0 +1,13 @@ +OBJECTS = main.o stk.o op.o +CC = clang +CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address + +calc : $(OBJECTS) + $(CC) $(CFLAGS) -o calc $(OBJECTS) + +main.o : stk.h op.h + +.PHONY : clean + +clean : + rm -f calc $(OBJECTS) -- cgit v1.2.3