diff options
| 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 |
| commit | b3bd3df103a5a75d267b2b79e85558768b1dc4bb (patch) | |
| tree | ee3ad753b2db679295db846e7d80363e9b6552e7 /src/Makefile | |
| parent | c1b188af8c51e29c96a0422b79516d95696869e7 (diff) | |
Fix a whole bunch of shit, create an arena implementation
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 6 |
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 | ||
| 23 | main: main.o shared.o | 23 | main: main.o shared.o |
| 24 | 24 | ||
| 25 | main.o: main.c shared.h | 25 | ll.o: ll.c ll.h |
| 26 | main.o: main.c | ||
| 27 | arena.o: arena.c arena.h | ||
| 26 | shared.o: shared.c shared.h | 28 | shared.o: shared.c shared.h |
| 27 | 29 | ||
| 28 | encryption: encryption.c encryption.h shared.o shared.h | 30 | encryption: encryption.c encryption.h shared.o shared.h |
| 29 | 31 | ||
| 30 | c clean: | 32 | c 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 |
