summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-03-24 15:02:03 -0500
committer@syxhe <https://t.me/syxhe>2025-03-24 15:02:03 -0500
commit7083f1d8f72d4e45a82fd40cd4822356429f0e23 (patch)
tree5d7ce6c9ab478f4d3e297fa3d66fa129cb5b1928 /src/Makefile
parentb3bd3df103a5a75d267b2b79e85558768b1dc4bb (diff)
Refactor a bunch of the linked list implementation
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 4 insertions, 4 deletions
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
20 20
21all: main 21all: main
22 22
23main: main.o shared.o 23main: main.o shared.o ll.o arena.o
24 24
25ll.o: ll.c ll.h 25ll.o: ll.c ll.h shared.h
26main.o: main.c 26main.o: main.c shared.h
27arena.o: arena.c arena.h 27arena.o: arena.c arena.h shared.h
28shared.o: shared.c shared.h 28shared.o: shared.c shared.h
29 29
30encryption: encryption.c encryption.h shared.o shared.h 30encryption: encryption.c encryption.h shared.o shared.h