From b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 28 Mar 2023 16:48:58 +0200 Subject: Rename cooker and eater with seitan prefix --- cooker/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 cooker/Makefile (limited to 'cooker/Makefile') diff --git a/cooker/Makefile b/cooker/Makefile new file mode 100644 index 0000000..737a217 --- /dev/null +++ b/cooker/Makefile @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: GPL-3.0-or-later +# +# seitan - Syscall Expressive Interpreter, Transformer and Notifier +# +# cooker/Makefile - Makefile for seitan-cooker +# +# Copyright 2023 Red Hat GmbH +# 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 +BIN := $(OUTDIR)seitan-cooker + +cooker: $(SRCS) $(HEADERS) + $(CC) -O0 -g -Wall -Wextra -pedantic -std=c99 -I$(COMMON_DIR) -o $(BIN) $(SRCS) + +all: cooker + +clean: + rm -f cooker -- cgit v1.2.3