From b389f10f4dbabb9fd13ae238252e7d1a9ce64174 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Wed, 29 Mar 2023 13:59:20 +0200 Subject: cooker: add filter.c/.h to the Makefile Integration of filter part in cooker. The filter requires the AUDIT_ARCH variable. --- cooker/Makefile | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'cooker/Makefile') diff --git a/cooker/Makefile b/cooker/Makefile index 737a217..4f72448 100644 --- a/cooker/Makefile +++ b/cooker/Makefile @@ -8,12 +8,26 @@ # Author: Stefano Brivio COMMON_DIR := ../common -SRCS := calls.c emit.c gluten.c main.c parse.c parson.c $(COMMON_DIR)/util.c calls/net.c -HEADERS := calls.h cooker.h emit.h gluten.h parse.h parson.h calls/net.h $(COMMON_DIR)/util.h +SRCS := calls.c emit.c filter.c gluten.c main.c parse.c parson.c \ + $(COMMON_DIR)/util.c calls/net.c +HEADERS := calls.h cooker.h emit.h filter.h \ + gluten.h parse.h parson.h calls/net.h \ + $(COMMON_DIR)/util.h BIN := $(OUTDIR)seitan-cooker +TARGET := $(shell $(CC) -dumpmachine) +TARGET_ARCH := $(shell echo $(TARGET) | cut -f1 -d- | tr [A-Z] [a-z]) +TARGET_ARCH := $(shell echo $(TARGET_ARCH) | sed 's/powerpc/ppc/') + +AUDIT_ARCH := $(shell echo $(TARGET_ARCH) | tr [a-z] [A-Z] | sed 's/^ARM.*/ARM/') +AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/I[456]86/I386/') +AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/PPC64/PPC/') +AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/PPCLE/PPC64LE/') + +CFLAGS += -DSEITAN_AUDIT_ARCH=AUDIT_ARCH_$(AUDIT_ARCH) +CFLAGS += -O0 -g -Wall -Wextra -pedantic -std=c99 -I$(COMMON_DIR) cooker: $(SRCS) $(HEADERS) - $(CC) -O0 -g -Wall -Wextra -pedantic -std=c99 -I$(COMMON_DIR) -o $(BIN) $(SRCS) + $(CC) $(CFLAGS) -o $(BIN) $(SRCS) all: cooker -- cgit v1.2.3