From 66f6ce154bbb230b120692575459c4727f746b22 Mon Sep 17 00:00:00 2001 From: Yamagi Burmeister Date: Sat, 8 Feb 2014 10:08:20 +0100 Subject: [PATCH] Remove one last call to mkdir.exe --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3f3a8682..47817ccb 100644 --- a/Makefile +++ b/Makefile @@ -328,7 +328,7 @@ endif ifeq ($(OSTYPE), Windows) icon: @echo "===> WR build/icon/icon.res" - ${Q}stuff/misc/mkdir -p build/icon + ${Q}mkdir -p build/icon ${Q}windres stuff\icon\icon.rc -O COFF -o build\icon\icon.res endif @@ -350,7 +350,7 @@ client: build/client/%.o: %.c @echo "===> CC $<" - ${Q}mkdir.exe -p $(@D) + ${Q}mkdir -p $(@D) ${Q}$(CC) -c $(CFLAGS) $(SDLCFLAGS) $(INCLUDE) -o $@ $< ifeq ($(WITH_CDA),yes)