From 9b7c4f0a4ea9ac5d3559d429dcf829b536d13e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?c=C3=A6l=C5=8Drum=20spect=C4=81tr=C4=ABx?= Date: Fri, 21 Nov 2025 23:28:37 +0100 Subject: [PATCH 1/3] Make git clean -fdx use --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 11f1fc7..12c0eec 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,8 @@ Makefile.csm: $(CSM) -makefile Makefile.csm .PHONY: clean -clean: Makefile.csm - $(MAKE) -f Makefile.csm clean - rm -f Makefile.csm rain +clean: + git clean -fdx .PHONY: install install: From 381fa66dfc7e11941bd09341328a3480481696b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?c=C3=A6l=C5=8Drum=20spect=C4=81tr=C4=ABx?= Date: Sun, 23 Nov 2025 13:45:41 +0100 Subject: [PATCH 2/3] Add .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d24b44 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/Makefile.csm +/rain From ec49659cb13d65ec8cfd08e4dd4a1cfd341c09cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?c=C3=A6l=C5=8Drum=20spect=C4=81tr=C4=ABx?= Date: Sun, 23 Nov 2025 13:53:05 +0100 Subject: [PATCH 3/3] lowercase makefile looks better --- .gitignore | 2 +- Makefile => makefile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) rename Makefile => makefile (67%) diff --git a/.gitignore b/.gitignore index 4d24b44..1369984 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/Makefile.csm +/makefile.csm /rain diff --git a/Makefile b/makefile similarity index 67% rename from Makefile rename to makefile index 12c0eec..738144f 100644 --- a/Makefile +++ b/makefile @@ -3,11 +3,11 @@ PREFIX := /usr/local INSTALL := install .PHONY: all -all: Makefile.csm - $(MAKE) -f Makefile.csm +all: makefile.csm + $(MAKE) -f makefile.csm -Makefile.csm: - $(CSM) -makefile Makefile.csm +makefile.csm: + $(CSM) -makefile makefile.csm .PHONY: clean clean: