diff options
| 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 |
| commit | 7083f1d8f72d4e45a82fd40cd4822356429f0e23 (patch) | |
| tree | 5d7ce6c9ab478f4d3e297fa3d66fa129cb5b1928 /src/Makefile | |
| parent | b3bd3df103a5a75d267b2b79e85558768b1dc4bb (diff) | |
Refactor a bunch of the linked list implementation
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 8 |
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 | ||
| 21 | all: main | 21 | all: main |
| 22 | 22 | ||
| 23 | main: main.o shared.o | 23 | main: main.o shared.o ll.o arena.o |
| 24 | 24 | ||
| 25 | ll.o: ll.c ll.h | 25 | ll.o: ll.c ll.h shared.h |
| 26 | main.o: main.c | 26 | main.o: main.c shared.h |
| 27 | arena.o: arena.c arena.h | 27 | arena.o: arena.c arena.h shared.h |
| 28 | shared.o: shared.c shared.h | 28 | shared.o: shared.c shared.h |
| 29 | 29 | ||
| 30 | encryption: encryption.c encryption.h shared.o shared.h | 30 | encryption: encryption.c encryption.h shared.o shared.h |
