X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=b6ee8b024d22dc2e5b2681922f8b5f56888fb410;hb=29a68fb5b733119dd8295a4f7c7d069b9f78f0a3;hp=602898c82f772a3bcf0c95076effb7c544311de1;hpb=11c63a67916065a366fe4acc6081b99777c9303a;p=oota-llvm.git diff --git a/Makefile b/Makefile index 602898c82f7..b6ee8b024d2 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,13 @@ ifeq ($(MAKECMDGOALS),tools-only) OPTIONAL_DIRS := endif +# Don't install utils, examples, or projects they are only used to +# build LLVM. +ifeq ($(MAKECMDGOALS),install) + DIRS := $(filter-out utils, $(DIRS)) + OPTIONAL_DIRS := +endif + # Include the main makefile machinery. include $(LLVM_SRC_ROOT)/Makefile.rules @@ -110,4 +117,10 @@ srpm: $(LLVM_OBJ_ROOT)/llvm.spec rpm: $(LLVM_OBJ_ROOT)/llvm.spec rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec +show-footprint: + $(Verb) du -sk $(LibDir) + $(Verb) du -sk $(ToolDir) + $(Verb) du -sk $(ExmplDir) + $(Verb) du -sk $(ObjDir) + .PHONY: srpm rpm