aboutgitcodelistschat:MatrixIRC
path: root/eater/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'eater/Makefile')
-rw-r--r--eater/Makefile5
1 files changed, 3 insertions, 2 deletions
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 <afrosi@redhat.com>
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)