From 69745c81f7fba5e869fc4c88429a9a93697c70c6 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sat, 13 Sep 2025 10:47:48 +1000 Subject: [PATCH] mv cursetree/pty subdir --- Makefile | 2 +- cursetree/{ => pty}/_pty.c | 0 cursetree/{ => pty}/_pty.h | 0 cursetree/{ => pty}/child.c | 0 cursetree/{ => pty}/child.h | 0 cursetree/{ => pty}/epty.c | 0 cursetree/{ => pty}/epty.h | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename cursetree/{ => pty}/_pty.c (100%) rename cursetree/{ => pty}/_pty.h (100%) rename cursetree/{ => pty}/child.c (100%) rename cursetree/{ => pty}/child.h (100%) rename cursetree/{ => pty}/epty.c (100%) rename cursetree/{ => pty}/epty.h (100%) diff --git a/Makefile b/Makefile index 9f43b25..21034d3 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ $(BUILD)/dorne.o: $(addprefix $(CLI)/, main.c) $(call mkobj,-Icursetree) $(BUILD)/cursetree.o: $(addprefix $(CT)/, cursetree.c curse.c) $(call mkobj,) -$(BUILD)/epty.o: $(addprefix $(CT)/, child.c epty.c _pty.c) +$(BUILD)/epty.o: $(addprefix $(CT)/, pty/child.c pty/epty.c pty/_pty.c) $(call mkobj,) # === DEVELOPMENT TARGETS === diff --git a/cursetree/_pty.c b/cursetree/pty/_pty.c similarity index 100% rename from cursetree/_pty.c rename to cursetree/pty/_pty.c diff --git a/cursetree/_pty.h b/cursetree/pty/_pty.h similarity index 100% rename from cursetree/_pty.h rename to cursetree/pty/_pty.h diff --git a/cursetree/child.c b/cursetree/pty/child.c similarity index 100% rename from cursetree/child.c rename to cursetree/pty/child.c diff --git a/cursetree/child.h b/cursetree/pty/child.h similarity index 100% rename from cursetree/child.h rename to cursetree/pty/child.h diff --git a/cursetree/epty.c b/cursetree/pty/epty.c similarity index 100% rename from cursetree/epty.c rename to cursetree/pty/epty.c diff --git a/cursetree/epty.h b/cursetree/pty/epty.h similarity index 100% rename from cursetree/epty.h rename to cursetree/pty/epty.h