Remove one last call to mkdir.exe

This commit is contained in:
Yamagi Burmeister 2014-02-08 10:08:20 +01:00
parent 76b9e71807
commit 66f6ce154b
1 changed files with 2 additions and 2 deletions

View File

@ -328,7 +328,7 @@ endif
ifeq ($(OSTYPE), Windows) ifeq ($(OSTYPE), Windows)
icon: icon:
@echo "===> WR build/icon/icon.res" @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 ${Q}windres stuff\icon\icon.rc -O COFF -o build\icon\icon.res
endif endif
@ -350,7 +350,7 @@ client:
build/client/%.o: %.c build/client/%.o: %.c
@echo "===> CC $<" @echo "===> CC $<"
${Q}mkdir.exe -p $(@D) ${Q}mkdir -p $(@D)
${Q}$(CC) -c $(CFLAGS) $(SDLCFLAGS) $(INCLUDE) -o $@ $< ${Q}$(CC) -c $(CFLAGS) $(SDLCFLAGS) $(INCLUDE) -o $@ $<
ifeq ($(WITH_CDA),yes) ifeq ($(WITH_CDA),yes)