aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-04-10 00:58:48 -0400
committerShav Kinderlehrer <[email protected]>2023-04-10 00:58:48 -0400
commite2ed5aca4d72971a9560d60daeb2f1c3ea8acb33 (patch)
tree50c803de4fe04441f1242f77ea9dd5275f411b53 /Makefile
parent97a99175f4f33282fb02e0ad75e02dbc30ace80c (diff)
downloadlat-e2ed5aca4d72971a9560d60daeb2f1c3ea8acb33.tar.gz
lat-e2ed5aca4d72971a9560d60daeb2f1c3ea8acb33.zip
Implement file opening
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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))