From 7083f1d8f72d4e45a82fd40cd4822356429f0e23 Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Mon, 24 Mar 2025 15:02:03 -0500 Subject: Refactor a bunch of the linked list implementation --- src/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 4a0d316..d12eb72 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,11 +20,11 @@ BINARIES := main encryption all: main -main: main.o shared.o +main: main.o shared.o ll.o arena.o -ll.o: ll.c ll.h -main.o: main.c -arena.o: arena.c arena.h +ll.o: ll.c ll.h shared.h +main.o: main.c shared.h +arena.o: arena.c arena.h shared.h shared.o: shared.c shared.h encryption: encryption.c encryption.h shared.o shared.h -- cgit v1.2.3