From: Robert Pengelly Date: Sun, 1 Mar 2026 17:06:36 +0000 (+0000) Subject: Remove unneeded make variable X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;ds=inline;p=tar.git Remove unneeded make variable --- diff --git a/Makefile.wat b/Makefile.wat new file mode 100644 index 0000000..eea6552 --- /dev/null +++ b/Makefile.wat @@ -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 index f2a1cb6..0000000 --- a/makefile.wat +++ /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 )