From e6562db0423e6019154baf05beb02ff3da02f3bb Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Fri, 24 Mar 2023 16:08:46 +0100 Subject: Re-arrange repository structure --- seitan-cooker/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 seitan-cooker/Makefile (limited to 'seitan-cooker/Makefile') diff --git a/seitan-cooker/Makefile b/seitan-cooker/Makefile new file mode 100644 index 0000000..8741879 --- /dev/null +++ b/seitan-cooker/Makefile @@ -0,0 +1,20 @@ +# 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 +BIN := $(OUTDIR)cooker + +cooker: $(SRCS) $(HEADERS) + $(CC) -O0 -g -Wall -Wextra -pedantic -std=c99 -o $(BIN) $(SRCS) + +all: cooker + +clean: + rm -f cooker -- cgit v1.2.3