From e2ed5aca4d72971a9560d60daeb2f1c3ea8acb33 Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Mon, 10 Apr 2023 00:58:48 -0400 Subject: Implement file opening --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7eb6e35..6fe9a6f 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,10 @@ CC=cc CFLAGS=-I$(IDIR) -Wall -Wextra -pedantic LIB= -_DEPS= +_DEPS=lib.h DEPS=$(patsubst %,$(IDIR)/%,$(_DEPS)) -_OBJ=$(NAME).o +_OBJ=$(NAME).o lib.o OBJ=$(patsubst %,$(ODIR)/%,$(_OBJ)) -- cgit v1.2.3