From b3bd3df103a5a75d267b2b79e85558768b1dc4bb Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Sun, 23 Mar 2025 22:11:15 -0500 Subject: Fix a whole bunch of shit, create an arena implementation --- src/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index bcb4670..4a0d316 100644 --- a/src/Makefile +++ b/src/Makefile @@ -22,10 +22,12 @@ all: main main: main.o shared.o -main.o: main.c shared.h +ll.o: ll.c ll.h +main.o: main.c +arena.o: arena.c arena.h shared.o: shared.c shared.h encryption: encryption.c encryption.h shared.o shared.h c clean: - rm -rvf $(BINARIES) $(wildcard *.o) $(wildcard *.test*) \ No newline at end of file + rm -rvf $(BINARIES) $(wildcard *.o) $(wildcard *.test*) $(wildcard *.enc) \ No newline at end of file -- cgit v1.2.3