Revert "Require unix-utils in path for windows make"

This reverts commit 5d46cca09a380410965cc65568a5fafbc2658e2e.

In preparation of merging an external contribution that superseedes this

Conflicts:
	ChangeLog
diff --git a/tests/Makefile b/tests/Makefile
index b64eaff..6489e52 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -402,9 +402,15 @@
 	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@
 
 clean:
+ifndef WINDOWS
 	rm -f $(APPS) *.c
+endif
+ifdef WINDOWS
+	del /Q /F *.c *.exe
+endif
 
 check: $(APPS)
+ifndef WINDOWS
 	echo "Running checks (Success if all tests PASSED)"
 	RETURN=0;																\
 	for i in $(APPS);														\
@@ -421,3 +427,4 @@
 		echo "";															\
 	done;																	\
 	if [ "$$RETURN" -eq 1 ]; then exit 1; fi
+endif