X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=0d7ca67397a25d3a80e163f0176a030020404bc2;hb=2a408413877ba5bcedc788dd679564dc5694678f;hp=b7824d50600089887b4ff585756545354f1d2318;hpb=d741bcfa1612e418216450b1893bb0763341f24d;p=oota-llvm.git diff --git a/Makefile b/Makefile index b7824d50600..0d7ca67397a 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,22 @@ +#===- ./Makefile -------------------------------------------*- Makefile -*--===# +# +# The LLVM Compiler Infrastructure +# +# This file was developed by the LLVM research group and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# LEVEL = . -DIRS = lib/Support utils lib tools -OPTIONAL_DIRS = projects +DIRS = lib/System lib/Support utils lib tools + +ifneq ($(MAKECMDGOALS),tools-only) +DIRS += runtime +OPTIONAL_DIRS = examples projects +endif include $(LEVEL)/Makefile.common test :: all cd test; $(MAKE) -distclean:: clean - $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \ - $(LEVEL)/include/Config/config.h \ - $(LEVEL)/autoconf/autom4te.cache \ - $(LEVEL)/config.log \ - $(LEVEL)/TAGS - +tools-only: all