summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-03-23 22:11:15 -0500
committer@syxhe <https://t.me/syxhe>2025-03-23 22:11:15 -0500
commitb3bd3df103a5a75d267b2b79e85558768b1dc4bb (patch)
treeee3ad753b2db679295db846e7d80363e9b6552e7 /src/Makefile
parentc1b188af8c51e29c96a0422b79516d95696869e7 (diff)
Fix a whole bunch of shit, create an arena implementation
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index bcb4670..4a0d316 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -22,10 +22,12 @@ all: main
22 22
23main: main.o shared.o 23main: main.o shared.o
24 24
25main.o: main.c shared.h 25ll.o: ll.c ll.h
26main.o: main.c
27arena.o: arena.c arena.h
26shared.o: shared.c shared.h 28shared.o: shared.c shared.h
27 29
28encryption: encryption.c encryption.h shared.o shared.h 30encryption: encryption.c encryption.h shared.o shared.h
29 31
30c clean: 32c clean:
31 rm -rvf $(BINARIES) $(wildcard *.o) $(wildcard *.test*) \ No newline at end of file 33 rm -rvf $(BINARIES) $(wildcard *.o) $(wildcard *.test*) $(wildcard *.enc) \ No newline at end of file