Skip to content

Commit

Permalink
* A couple of small Makefile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Oct 5, 2005
1 parent 490c84d commit 260ca8d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions code/unix/Makefile
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 260ca8d

Please sign in to comment.