--- /dev/null
+#******************************************************************************
+# @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 )
+++ /dev/null
-#******************************************************************************
-# @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 )