From bdbec30a849807fb5e6841a38cfe0d168e5962b9 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Thu, 21 Dec 2023 12:06:05 +0100 Subject: seitan: Add netlink, sendto()/sendmsg(), iovec handling, demo with routes A bit rough at the moment, but it does the trick. Bonus: setsockopt() (with magic values only, not used in any demo yet). Signed-off-by: Stefano Brivio --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 00406bc..8f537a4 100644 --- a/Makefile +++ b/Makefile @@ -12,12 +12,12 @@ export OUTDIR COMMON_DIR := $(DIR)/common BIN := $(OUTDIR)/seitan -SRCS := seitan.c $(COMMON_DIR)/common.c $(COMMON_DIR)/util.c operations.c +SRCS := seitan.c $(COMMON_DIR)/common.c $(COMMON_DIR)/util.c operations.c cooker/calls.c $(wildcard cooker/calls/*.c) HEADERS := $(COMMON_DIR)/common.h $(COMMON_DIR)/gluten.h \ $(COMMON_DIR)/util.h operations.h CFLAGS += -DTMP_DATA_SIZE=1000 -CFLAGS += -Wall -Wextra -pedantic -std=c99 -I$(COMMON_DIR) +CFLAGS += -Wall -Wextra -pedantic -std=c99 -I$(COMMON_DIR) -g all: cooker eater seitan -- cgit v1.2.3