core: blob+stream: Store stream/blob hashes

Signed-off-by: Chloe M. <chloe@mirocom.org>
This commit is contained in:
2026-04-30 21:28:09 -04:00
parent 1d4bb8769a
commit e35d8cf136
7 changed files with 18 additions and 1 deletions
+3 -1
View File
@@ -8,6 +8,8 @@ DFILES = $(CFILES:.c=.d)
OFILES = $(CFILES:.c=.o)
CC = gcc
LIBS = $(shell pkg-config --libs "openssl")
CFLAGS = \
-Wall \
-pedantic \
@@ -19,7 +21,7 @@ all: blobchain
.PHONY: blobchain
blobchain: $(OFILES)
$(CC) $^ -o $@
$(CC) $(LIBS) $^ -o $@
-include $(DFILES)
%.o: %.c