From cbc17d2fcafe2e432f704d2dd2e0ff5c85118356 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Mon, 20 Mar 2023 07:54:51 +0100 Subject: cooker: Initial import of new implementation Signed-off-by: Stefano Brivio --- cooker/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cooker/Makefile (limited to 'cooker/Makefile') diff --git a/cooker/Makefile b/cooker/Makefile new file mode 100644 index 0000000..cd9d925 --- /dev/null +++ b/cooker/Makefile @@ -0,0 +1,19 @@ +# 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 + +SRCS := calls.c emit.c gluten.c main.c parse.c parson.c util.c calls/net.c +HEADERS := calls.h cooker.h emit.h gluten.h parse.h parson.h util.h calls/net.h + +cooker: $(SRCS) $(HEADERS) + $(CC) -O0 -g -Wall -Wextra -pedantic -std=c99 -o cooker $(SRCS) + +all: cooker + +clean: + rm -f cooker -- cgit v1.2.3