commit efd99dad762ac5c64e58e8f2f33f1e7da09f4ded Author: Roberto E. Vargas Caballero <k...@shike2.com> AuthorDate: Fri Mar 22 04:32:56 2024 +0100 Commit: Roberto E. Vargas Caballero <k...@shike2.com> CommitDate: Tue Dec 17 10:56:56 2024 +0100
Move more things around diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6a863e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +DIRS = curses-dummy linux misc posix ubase unix + +all: $(DIRS) + +$(DIRS): FORCE + @+cd $@ && $(MAKE) + +clean: + for i in `ls -d */`; \ + do\ + cd $$i;\ + $(MAKE) clean;\ + cd -;\ + done diff --git a/posix/libutf/Makefile b/libutf/Makefile similarity index 100% rename from posix/libutf/Makefile rename to libutf/Makefile diff --git a/posix/libutf/fgetrune.c b/libutf/fgetrune.c similarity index 100% rename from posix/libutf/fgetrune.c rename to libutf/fgetrune.c diff --git a/posix/libutf/fputrune.c b/libutf/fputrune.c similarity index 100% rename from posix/libutf/fputrune.c rename to libutf/fputrune.c diff --git a/posix/libutf/isalnumrune.c b/libutf/isalnumrune.c similarity index 100% rename from posix/libutf/isalnumrune.c rename to libutf/isalnumrune.c diff --git a/posix/libutf/isalpharune.c b/libutf/isalpharune.c similarity index 100% rename from posix/libutf/isalpharune.c rename to libutf/isalpharune.c diff --git a/posix/libutf/isblankrune.c b/libutf/isblankrune.c similarity index 100% rename from posix/libutf/isblankrune.c rename to libutf/isblankrune.c diff --git a/posix/libutf/iscntrlrune.c b/libutf/iscntrlrune.c similarity index 100% rename from posix/libutf/iscntrlrune.c rename to libutf/iscntrlrune.c diff --git a/posix/libutf/isdigitrune.c b/libutf/isdigitrune.c similarity index 100% rename from posix/libutf/isdigitrune.c rename to libutf/isdigitrune.c diff --git a/posix/libutf/isgraphrune.c b/libutf/isgraphrune.c similarity index 100% rename from posix/libutf/isgraphrune.c rename to libutf/isgraphrune.c diff --git a/posix/libutf/isprintrune.c b/libutf/isprintrune.c similarity index 100% rename from posix/libutf/isprintrune.c rename to libutf/isprintrune.c diff --git a/posix/libutf/ispunctrune.c b/libutf/ispunctrune.c similarity index 100% rename from posix/libutf/ispunctrune.c rename to libutf/ispunctrune.c diff --git a/posix/libutf/isspacerune.c b/libutf/isspacerune.c similarity index 100% rename from posix/libutf/isspacerune.c rename to libutf/isspacerune.c diff --git a/posix/libutf/istitlerune.c b/libutf/istitlerune.c similarity index 100% rename from posix/libutf/istitlerune.c rename to libutf/istitlerune.c diff --git a/posix/libutf/isxdigitrune.c b/libutf/isxdigitrune.c similarity index 100% rename from posix/libutf/isxdigitrune.c rename to libutf/isxdigitrune.c diff --git a/posix/libutf/lowerrune.c b/libutf/lowerrune.c similarity index 100% rename from posix/libutf/lowerrune.c rename to libutf/lowerrune.c diff --git a/posix/libutf/mkrunetype.awk b/libutf/mkrunetype.awk similarity index 100% rename from posix/libutf/mkrunetype.awk rename to libutf/mkrunetype.awk diff --git a/posix/libutf/rune.c b/libutf/rune.c similarity index 100% rename from posix/libutf/rune.c rename to libutf/rune.c diff --git a/posix/libutf/runetype.c b/libutf/runetype.c similarity index 100% rename from posix/libutf/runetype.c rename to libutf/runetype.c diff --git a/posix/libutf/runetype.h b/libutf/runetype.h similarity index 100% rename from posix/libutf/runetype.h rename to libutf/runetype.h diff --git a/posix/libutf/upperrune.c b/libutf/upperrune.c similarity index 100% rename from posix/libutf/upperrune.c rename to libutf/upperrune.c diff --git a/posix/libutf/utf.c b/libutf/utf.c similarity index 100% rename from posix/libutf/utf.c rename to libutf/utf.c diff --git a/posix/libutf/utftorunestr.c b/libutf/utftorunestr.c similarity index 100% rename from posix/libutf/utftorunestr.c rename to libutf/utftorunestr.c