aboutgitcodelistschat:MatrixIRC
path: root/cooker/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cooker/Makefile')
-rw-r--r--cooker/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/cooker/Makefile b/cooker/Makefile
deleted file mode 100644
index cd9d925..0000000
--- a/cooker/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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
-
-cooker: $(SRCS) $(HEADERS)
- $(CC) -O0 -g -Wall -Wextra -pedantic -std=c99 -o cooker $(SRCS)
-
-all: cooker
-
-clean:
- rm -f cooker