aboutgitcodelistschat:MatrixIRC
path: root/seitan-cooker/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'seitan-cooker/Makefile')
-rw-r--r--seitan-cooker/Makefile20
1 files changed, 20 insertions, 0 deletions
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 <sbrivio@redhat.com>
+
+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