From 1e78526693d22abe24c98291a782998573f6b01d Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Wed, 17 May 2023 13:20:13 +0200 Subject: Minor fixes for the filter and the eater Add: - ignore_args field for the filter. - use MAX_FILTER to define the filter size in the eater --- eater/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'eater/Makefile') diff --git a/eater/Makefile b/eater/Makefile index 2e08b1f..1f85126 100644 --- a/eater/Makefile +++ b/eater/Makefile @@ -8,10 +8,11 @@ # Author: Alice Frosi COMMON_DIR :=../common +COOKER_DIR := ../cooker SRCS := $(COMMON_DIR)/common.c eater.c -HEADERS := $(COMMON_DIR)/common.h +HEADERS := $(COMMON_DIR)/common.h $(COOKER_DIR)/filter.h BIN := $(OUTDIR)/seitan-eater -CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR) +CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR) -I$(COOKER_DIR) eater: $(SRCS) $(HEADERS) $(CC) $(CFLAGS) -o $(BIN) $(SRCS) -- cgit v1.2.3