feat: add step to receive request body in buffer

This commit is contained in:
Jef Roosens 2023-05-29 23:26:15 +02:00
parent ff0795bb55
commit 16103f9b24
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
10 changed files with 113 additions and 12 deletions

View file

@ -50,7 +50,7 @@ objs: $(OBJS)
.PHONY: bin
bin: $(BIN)
$(BIN): $(OBJS)
$(CC) $(INTERNALCFLAGS) $(LDFLAGS) -o $@ $^
$(CC) $(INTERNALCFLAGS) $(LDFLAGS) -lm -o $@ $^
$(BUILD_DIR)/$(SRC_DIR)/%.c.o: $(SRC_DIR)/%.c
mkdir -p $(dir $@)