mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
* A couple of small Makefile fixes
This commit is contained in:
parent
490c84d907
commit
260ca8d730
1 changed files with 6 additions and 2 deletions
|
@ -1425,7 +1425,7 @@ clean-debug:
|
|||
$(MAKE) clean2 B=$(BD) CFLAGS="$(DEBUG_CFLAGS)"
|
||||
|
||||
clean-release:
|
||||
$(MAKE) clean2 B=$(BR) CFLAGS="$(DEBUG_CFLAGS)"
|
||||
$(MAKE) clean2 B=$(BR) CFLAGS="$(RELEASE_CFLAGS)"
|
||||
|
||||
distclean: clean
|
||||
$(MAKE) -C ../tools/asm clean uninstall
|
||||
|
@ -1435,4 +1435,8 @@ distclean: clean
|
|||
# DEPENDENCIES
|
||||
#############################################################################
|
||||
|
||||
-include $(shell find -name "*.d")
|
||||
D_FILES=$(shell find -name "*.d")
|
||||
|
||||
ifneq ($(strip $(D_FILES)),)
|
||||
include $(D_FILES)
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue