X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Ftree.mk;h=3aa85277b072c35a2a0e2a3fe0e1a525cc79c18d;hb=b00e3a6c0a82a8af3238d677f798d812cd7fd49f;hp=6fab46022e9f00745c0d9dc3d9ea9bbb04e36ba1;hpb=aea784af873f089a40af71849d83f59008562a58;p=ghc-hetmet.git diff --git a/mk/tree.mk b/mk/tree.mk index 6fab460..3aa8527 100644 --- a/mk/tree.mk +++ b/mk/tree.mk @@ -47,9 +47,31 @@ INPLACE_TOPDIR = $(INPLACE)/lib INPLACE_MINGW = $(INPLACE)/mingw INPLACE_PERL = $(INPLACE)/perl +################################################################################ +# +# Bindist testing directory +# +################################################################################ + +BIN_DIST_INST_SUBDIR = "install dir" +BIN_DIST_INST_DIR = bindisttest/$(BIN_DIST_INST_SUBDIR) + +################################################################################ +# +# rm +# +################################################################################ + # These are here, rather than in config.mk, as they need to exist in an # unconfigured tree so that the various clean targets can be used # without configuring: +ifeq "$(ONLY_SHOW_CLEANS)" "YES" +RM = utils/testremove/wouldrm +RM_OPTS = CLEAN_FILES +RM_OPTS_REC = CLEAN_REC +else RM = rm RM_OPTS = -f +RM_OPTS_REC = -rf +endif