From 290f2b95ee100735f55fe10af457cc65158af043 Mon Sep 17 00:00:00 2001
From: Holden Rohrer 
Date: Wed, 27 May 2020 16:21:02 -0400
Subject: Initial working commit
There are still some errors when run through valgrind, but it performs
as expected for the test file.
---
 Makefile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
(limited to 'Makefile')
diff --git a/Makefile b/Makefile
index 7327ab6..d3b1b6e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,13 @@
 .POSIX:
-OBJS = strbst.o
+OBJS = strbst.o ll.o nodelink.o read.o main.o
 CFLAGS = -Wall -pedantic
+CC = gcc
 tmplt: $(OBJS)
 	$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
 clean:
 	rm -f $(OBJS) inter
 strbst.o: strbst.c strbst.h
+ll.o: ll.c ll.h
+nodelink.o: nodelink.c nodelink.h strbst.h
+read.o: read.c read.h strbst.h nodelink.h
+main.o: main.c
-- 
cgit