From: Lawrence S. <ljs...@us...> - 2020-09-05 20:37:11
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 6552e8b89c2f3a5652c22a4f13919978fdefc36b (commit) from ce33885a8f23cc8e8cd970139b430591ea6c95fd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6552e8b89c2f3a5652c22a4f13919978fdefc36b Author: Lawrence Sebald <ljs...@us...> Date: Sat Sep 5 16:36:27 2020 -0400 Rename naomibin -> naomibintool. ----------------------------------------------------------------------- Summary of changes: utils/naomibin/Makefile | 13 ------------- utils/naomibintool/Makefile | 13 +++++++++++++ utils/{naomibin/naomibin.c => naomibintool/naomibintool.c} | 0 3 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 utils/naomibin/Makefile create mode 100644 utils/naomibintool/Makefile rename utils/{naomibin/naomibin.c => naomibintool/naomibintool.c} (100%) diff --git a/utils/naomibin/Makefile b/utils/naomibin/Makefile deleted file mode 100644 index afd184e..0000000 --- a/utils/naomibin/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -# KallistiOS ##version## -# -# utils/naomibin/Makefile -# Copyright (C) 2020 Lawrence Sebald -# - -all: naomibin - -naomibin: naomibin.c - gcc -o naomibin naomibin.c - -clean: - -rm -f naomibin diff --git a/utils/naomibintool/Makefile b/utils/naomibintool/Makefile new file mode 100644 index 0000000..f9317a2 --- /dev/null +++ b/utils/naomibintool/Makefile @@ -0,0 +1,13 @@ +# KallistiOS ##version## +# +# utils/naomibintool/Makefile +# Copyright (C) 2020 Lawrence Sebald +# + +all: naomibintool + +naomibin: naomibintool.c + $(CC) -o naomibintool naomibintool.c + +clean: + -rm -f naomibintool diff --git a/utils/naomibin/naomibin.c b/utils/naomibintool/naomibintool.c similarity index 100% rename from utils/naomibin/naomibin.c rename to utils/naomibintool/naomibintool.c hooks/post-receive -- A pseudo Operating System for the Dreamcast. |