From 30e5acd915be17114a98198363f4cb3cad706054 Mon Sep 17 00:00:00 2001 From: Vahagn Khachatryan Date: Mon, 15 Oct 2018 11:28:44 +0100 Subject: [PATCH] Forcing default shell to cmd.exe --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6466bdc..8f51fae 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,13 @@ +SHELL=C:/windows/system32/cmd.exe +.SHELLFLAGS=/C + TEST_FILES = $(wildcard samples/*.zip) PYTHONPATH = $(CURDIR)/modules/ebooklib .PHONY: test -test: test_samples/algorithms_third_edition_in_c.zip +test: test_samples/algorithms_third_edition_in_c.zip .PHONY: test_all test_all: $(addprefix test_,$(TEST_FILES)) @@ -21,5 +24,3 @@ $(addprefix test_,$(TEST_FILES)): test_%: .PHONY: setup setup: git submodule update - -