mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Remove one last call to mkdir.exe
This commit is contained in:
parent
76b9e71807
commit
66f6ce154b
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue