Require unix-utils in path for windows make

This commit is contained in:
Manuel Pégourié-Gonnard 2015-02-13 11:59:19 +00:00
parent d72704b0d5
commit 5d46cca09a
5 changed files with 9 additions and 25 deletions

View file

@ -402,15 +402,9 @@ test_suite_version: test_suite_version.c $(DEP)
$(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); \
@ -427,4 +421,3 @@ ifndef WINDOWS
echo ""; \
done; \
if [ "$$RETURN" -eq 1 ]; then exit 1; fi
endif