diff options
author | Alice Frosi <afrosi@redhat.com> | 2023-03-28 16:48:58 +0200 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2023-03-28 17:05:54 +0200 |
commit | b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c (patch) | |
tree | 55449680aa735b529600b2b7927e160944685697 | |
parent | 21c4730f0cb020db3bdff22e347a52d012cc79fe (diff) | |
download | seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.tar seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.tar.gz seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.tar.bz2 seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.tar.lz seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.tar.xz seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.tar.zst seitan-b6c964fb5a00c8b8ab26a4678cdde24c3e9b1d9c.zip |
Rename cooker and eater with seitan prefix
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | cooker/Makefile (renamed from seitan-cooker/Makefile) | 2 | ||||
-rw-r--r-- | cooker/calls.c (renamed from seitan-cooker/calls.c) | 0 | ||||
-rw-r--r-- | cooker/calls.h (renamed from seitan-cooker/calls.h) | 0 | ||||
-rw-r--r-- | cooker/calls/net.c (renamed from seitan-cooker/calls/net.c) | 0 | ||||
-rw-r--r-- | cooker/calls/net.h (renamed from seitan-cooker/calls/net.h) | 0 | ||||
-rw-r--r-- | cooker/cooker.h (renamed from seitan-cooker/cooker.h) | 0 | ||||
-rw-r--r-- | cooker/emit.c (renamed from seitan-cooker/emit.c) | 0 | ||||
-rw-r--r-- | cooker/emit.h (renamed from seitan-cooker/emit.h) | 0 | ||||
-rw-r--r-- | cooker/example.hjson (renamed from seitan-cooker/example.hjson) | 0 | ||||
-rw-r--r-- | cooker/example.hjson.license (renamed from seitan-cooker/example.hjson.license) | 0 | ||||
-rw-r--r-- | cooker/filter.c (renamed from seitan-cooker/filter.c) | 0 | ||||
-rw-r--r-- | cooker/filter.h (renamed from seitan-cooker/filter.h) | 0 | ||||
-rw-r--r-- | cooker/gluten.c (renamed from seitan-cooker/gluten.c) | 0 | ||||
-rw-r--r-- | cooker/gluten.h (renamed from seitan-cooker/gluten.h) | 0 | ||||
-rw-r--r-- | cooker/main.c (renamed from seitan-cooker/main.c) | 0 | ||||
-rw-r--r-- | cooker/parse.c (renamed from seitan-cooker/parse.c) | 0 | ||||
-rw-r--r-- | cooker/parse.h (renamed from seitan-cooker/parse.h) | 0 | ||||
-rw-r--r-- | cooker/parson.c (renamed from seitan-cooker/parson.c) | 0 | ||||
-rw-r--r-- | cooker/parson.h (renamed from seitan-cooker/parson.h) | 0 | ||||
-rw-r--r-- | eater/Makefile (renamed from seitan-eater/Makefile) | 2 | ||||
-rw-r--r-- | eater/eater.c (renamed from seitan-eater/eater.c) | 0 |
23 files changed, 8 insertions, 6 deletions
@@ -1,6 +1,6 @@ seitan -eater -cooker +seitan-eater +seitan-cooker bpf_dbg build numbers.h @@ -20,11 +20,13 @@ CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR) all: cooker eater seitan +.PHONY: cooker cooker: - $(MAKE) -C seitan-cooker + $(MAKE) -C cooker +.PHONY: eater eater: - $(MAKE) -C seitan-eater + $(MAKE) -C eater seitan: $(SRCS) $(HEADERS) $(CC) $(CFLAGS) -o $(BIN) $(SRCS) diff --git a/seitan-cooker/Makefile b/cooker/Makefile index 241ad4b..737a217 100644 --- a/seitan-cooker/Makefile +++ b/cooker/Makefile @@ -10,7 +10,7 @@ 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)cooker +BIN := $(OUTDIR)seitan-cooker cooker: $(SRCS) $(HEADERS) $(CC) -O0 -g -Wall -Wextra -pedantic -std=c99 -I$(COMMON_DIR) -o $(BIN) $(SRCS) diff --git a/seitan-cooker/calls.c b/cooker/calls.c index 74b5a06..74b5a06 100644 --- a/seitan-cooker/calls.c +++ b/cooker/calls.c diff --git a/seitan-cooker/calls.h b/cooker/calls.h index 5d46e14..5d46e14 100644 --- a/seitan-cooker/calls.h +++ b/cooker/calls.h diff --git a/seitan-cooker/calls/net.c b/cooker/calls/net.c index c0949cc..c0949cc 100644 --- a/seitan-cooker/calls/net.c +++ b/cooker/calls/net.c diff --git a/seitan-cooker/calls/net.h b/cooker/calls/net.h index 105bf4a..105bf4a 100644 --- a/seitan-cooker/calls/net.h +++ b/cooker/calls/net.h diff --git a/seitan-cooker/cooker.h b/cooker/cooker.h index 53aa0db..53aa0db 100644 --- a/seitan-cooker/cooker.h +++ b/cooker/cooker.h diff --git a/seitan-cooker/emit.c b/cooker/emit.c index a82529c..a82529c 100644 --- a/seitan-cooker/emit.c +++ b/cooker/emit.c diff --git a/seitan-cooker/emit.h b/cooker/emit.h index 74264b1..74264b1 100644 --- a/seitan-cooker/emit.h +++ b/cooker/emit.h diff --git a/seitan-cooker/example.hjson b/cooker/example.hjson index 45ed339..45ed339 100644 --- a/seitan-cooker/example.hjson +++ b/cooker/example.hjson diff --git a/seitan-cooker/example.hjson.license b/cooker/example.hjson.license index 2e3bd69..2e3bd69 100644 --- a/seitan-cooker/example.hjson.license +++ b/cooker/example.hjson.license diff --git a/seitan-cooker/filter.c b/cooker/filter.c index dbda7ca..dbda7ca 100644 --- a/seitan-cooker/filter.c +++ b/cooker/filter.c diff --git a/seitan-cooker/filter.h b/cooker/filter.h index ee5ab12..ee5ab12 100644 --- a/seitan-cooker/filter.h +++ b/cooker/filter.h diff --git a/seitan-cooker/gluten.c b/cooker/gluten.c index 1116e6b..1116e6b 100644 --- a/seitan-cooker/gluten.c +++ b/cooker/gluten.c diff --git a/seitan-cooker/gluten.h b/cooker/gluten.h index 440029d..440029d 100644 --- a/seitan-cooker/gluten.h +++ b/cooker/gluten.h diff --git a/seitan-cooker/main.c b/cooker/main.c index 9965cff..9965cff 100644 --- a/seitan-cooker/main.c +++ b/cooker/main.c diff --git a/seitan-cooker/parse.c b/cooker/parse.c index 9d8a7be..9d8a7be 100644 --- a/seitan-cooker/parse.c +++ b/cooker/parse.c diff --git a/seitan-cooker/parse.h b/cooker/parse.h index cb4a2f2..cb4a2f2 100644 --- a/seitan-cooker/parse.h +++ b/cooker/parse.h diff --git a/seitan-cooker/parson.c b/cooker/parson.c index a7a844a..a7a844a 100644 --- a/seitan-cooker/parson.c +++ b/cooker/parson.c diff --git a/seitan-cooker/parson.h b/cooker/parson.h index 186fcb0..186fcb0 100644 --- a/seitan-cooker/parson.h +++ b/cooker/parson.h diff --git a/seitan-eater/Makefile b/eater/Makefile index c70433f..2e3db3f 100644 --- a/seitan-eater/Makefile +++ b/eater/Makefile @@ -10,7 +10,7 @@ COMMON_DIR :=../common SRCS := $(COMMON_DIR)/common.c eater.c HEADERS := $(COMMON_DIR)/common.h -BIN := $(OUTDIR)eater +BIN := $(OUTDIR)seitan-eater CFLAGS += -Wall -Wextra -pedantic -I$(COMMON_DIR) eater: $(SRCS) $(HEADERS) diff --git a/seitan-eater/eater.c b/eater/eater.c index 96a7b61..96a7b61 100644 --- a/seitan-eater/eater.c +++ b/eater/eater.c |