Remove unneeded make variable master
authorRobert Pengelly <robertapengelly@hotmail.com>
Sun, 1 Mar 2026 17:06:36 +0000 (17:06 +0000)
committerRobert Pengelly <robertapengelly@hotmail.com>
Sun, 1 Mar 2026 17:06:36 +0000 (17:06 +0000)
Makefile.wat [new file with mode: 0644]
makefile.wat [deleted file]

diff --git a/Makefile.wat b/Makefile.wat
new file mode 100644 (file)
index 0000000..eea6552
--- /dev/null
@@ -0,0 +1,18 @@
+#******************************************************************************
+# @file             Makefile.wat
+#******************************************************************************
+SRCDIR              ?=  $(CURDIR)
+VPATH               :=  $(SRCDIR)
+
+CSRC                :=  lib.c tar.c report.c
+
+all: unzip.exe
+
+unzip.exe: $(CSRC)
+
+       wcl -fe=$@ $^
+
+clean:
+
+       for /r %%f in (*.obj) do ( if exist %%f ( del /q %%f ) )
+       if exist unzip.exe ( del /q unzip.exe )
diff --git a/makefile.wat b/makefile.wat
deleted file mode 100644 (file)
index f2a1cb6..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#******************************************************************************
-# @file             Makefile.wat
-#******************************************************************************
-SRCDIR              ?=  $(CURDIR)
-VPATH               :=  $(SRCDIR)
-
-CSRC                :=  lib.c tar.c report.c
-INCDIR              :=  $(subst /,\,$(SRCDIR))
-
-all: unzip.exe
-
-unzip.exe: $(CSRC)
-
-       wcl -fe=$@ $^
-
-clean:
-
-       for /r %%f in (*.obj) do ( if exist %%f ( del /q %%f ) )
-       if exist unzip.exe ( del /q unzip.exe )