More fire-fighting.

This commit is contained in:
Graydon Hoare 2010-10-22 17:54:27 -07:00
parent e5229b97d7
commit a0867e0ccf

View File

@ -518,6 +518,9 @@ TEST_XFAILS_X86 += test/run-pass/native-mod.rc
TEST_XFAILS_LLVM += test/run-pass/native-mod.rc
TEST_XFAILS_SELF += test/run-pass/native-mod.rc
endif
ifeq ($(CFG_OSTYPE), Darwin)
TEST_XFAILS_SELF += $(wildcard test/*/*.rs)
endif
RPASS_RC := $(wildcard test/run-pass/*.rc)
RPASS_RS := $(wildcard test/run-pass/*.rs)
@ -923,9 +926,9 @@ clean:
$(CFG_QUIET)rm -f $(CFG_BOOT) $(CFG_RUNTIME) $(CFG_STDLIB)
$(CFG_QUIET)rm -Rf $(PKG_NAME)-*.tar.gz dist
$(CFG_QUIET)rm -f $(foreach ext,cmx cmi cmo cma o a d exe,\
$(wildcard boot/*/*.$(ext) boot/*/*/*.$(ext))) \
$(CFG_QUIET)rm -f $(foreach ext,out llvm x86 o s exe dSYM,\
$(wildcard test/*/*.$(ext))) \
$(wildcard boot/*/*.$(ext) boot/*/*/*.$(ext)))
$(CFG_QUIET)rm -Rf $(foreach ext,out llvm x86 o s exe dSYM,\
$(wildcard test/*/*.$(ext)))
# Local Variables: