From 97d1c9153b70bc58186bc3e0ec6c30664110aa1d Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Thu, 13 Apr 2023 10:27:10 -0500 Subject: [PATCH] Added libstack files to Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d8bd697..13e32f9 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ EXEC_FILE=main -TARGETS=$(EXEC_FILE).o message.o user.o message_helpers.o file_helpers.o +TARGETS=$(EXEC_FILE).o message.o user.o message_helpers.o file_helpers.o stack.o CFLAGS= @@ -14,6 +14,7 @@ message.o: message.c user.o: user.c message_helpers.o: message_helpers.c file_helpers.o: file_helpers.c +stack.o: stack.c $(TARGETS): gcc $(CFLAGS) -c -o $@ $^