From f8f638bccc8b49917a1886f1961af7dc553166ef Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 18 Apr 2023 14:50:31 +0200 Subject: Makefile: fix compilation for cooker for missing numbers.h --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3d9a3ad..2798a14 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ COMMON_DIR := $(DIR)/common BIN := $(OUTDIR)seitan SRCS := seitan.c $(COMMON_DIR)/common.c operations.c HEADERS := $(COMMON_DIR)/common.h $(COMMON_DIR)/gluten.h \ - $(COMMON_DIR)/util.h operations.h + $(COMMON_DIR)/numbers.h $(COMMON_DIR)/util.h operations.h CFLAGS += -DTMP_DATA_SIZE=1000 CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR) @@ -21,7 +21,7 @@ CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR) all: cooker eater seitan .PHONY: cooker -cooker: +cooker: numbers.h $(MAKE) -C cooker .PHONY: eater -- cgit v1.2.3