Skip to content

Commit aca6ae5

Browse files
im really scraping the bottom of the barrel at this point
1 parent 51b4c81 commit aca6ae5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ $(BUILD)/%: $(TEST_OBJ)/%.o $(LIB)
4141

4242
mkbuild:
4343
ifeq ($(OS), Windows_NT)
44-
if not exist "$(BUILD)" mkdir "$(BUILD)"
45-
if not exist "$(OBJ)" mkdir "$(OBJ)"
46-
if not exist "$(TEST_OBJ)" mkdir "$(TEST_OBJ)"
44+
cmd /C "if not exist '$(BUILD)' mkdir '$(BUILD)'"
45+
cmd /C "if not exist '$(OBJ)' mkdir '$(OBJ)'"
46+
cmd /C "if not exist '$(TEST_OBJ)' mkdir '$(TEST_OBJ)'"
4747
else
4848
mkdir -p $(BUILD) $(OBJ) $(TEST_OBJ)
4949
endif

0 commit comments

Comments
 (0)