mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
mkdir -p so dirs don't cause unnecessary errors
This commit is contained in:
parent
306bacc504
commit
3ccbf87b4d
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ TARGETS=$(BUILDDIR)/quake2 \
|
|||
# $(BUILDDIR)/xatrix/game$(ARCH).$(SHLIBEXT)
|
||||
|
||||
build_debug:
|
||||
@-mkdir $(BUILD_DEBUG_DIR) \
|
||||
@-mkdir -p $(BUILD_DEBUG_DIR) \
|
||||
$(BUILD_DEBUG_DIR)/client \
|
||||
$(BUILD_DEBUG_DIR)/ref_soft \
|
||||
$(BUILD_DEBUG_DIR)/ref_gl \
|
||||
|
@ -78,7 +78,7 @@ build_debug:
|
|||
$(MAKE) targets BUILDDIR=$(BUILD_DEBUG_DIR) CFLAGS="$(DEBUG_CFLAGS)"
|
||||
|
||||
build_release:
|
||||
@-mkdir $(BUILD_RELEASE_DIR) \
|
||||
@-mkdir -p $(BUILD_RELEASE_DIR) \
|
||||
$(BUILD_RELEASE_DIR)/client \
|
||||
$(BUILD_RELEASE_DIR)/ref_soft \
|
||||
$(BUILD_RELEASE_DIR)/ref_gl \
|
||||
|
|
Loading…
Reference in a new issue