X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=e9cbc789ced47843fec5283b483579fab0595d63;hb=ec370fd3dce3c00cb0a5665cd3e65685325e7d09;hp=71534d16f04ab68fb795edd6e1ca53c983999db0;hpb=b68e33476ea90e84c261d065d852b998836b9238;p=oota-llvm.git diff --git a/Makefile b/Makefile index 71534d16f04..e9cbc789ced 100644 --- a/Makefile +++ b/Makefile @@ -1,25 +1,44 @@ +#===- ./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 runtime -OPTIONAL_DIRS = projects +DIRS = lib/System lib/Support utils lib tools -include $(LEVEL)/Makefile.common - -test :: all - cd test; $(MAKE) +ifneq ($(MAKECMDGOALS),tools-only) +DIRS += runtime docs +OPTIONAL_DIRS = examples projects +endif -distclean:: clean - $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \ - $(LEVEL)/include/Config/config.h \ - $(LEVEL)/autoconf/autom4te.cache \ - $(LEVEL)/config.log \ - $(LEVEL)/TAGS +EXTRA_DIST := test llvm.spec include -AUTOCONF = autoconf -AUTOHEADER = autoheader +include $(LEVEL)/Makefile.common -configure: autoconf/configure.ac autoconf/aclocal.m4 - cd autoconf && $(AUTOCONF) -o ../configure configure.ac +.PHONY: debug-opt-prof +debug-opt-prof: + $(Echo) Building Debug Version + $(Verb) $(MAKE) + $(Echo) + $(Echo) Building Optimized Version + $(Echo) + $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 + $(Echo) + $(Echo) Building Profiling Version + $(Echo) + $(Verb) $(MAKE) ENABLE_PROFILING=1 -include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4 - $(AUTOHEADER) -I autoconf autoconf/configure.ac +dist-hook:: + $(Echo) Eliminating files constructed by configure + $(Verb) $(RM) -f \ + $(TopDistDir)/include/llvm/ADT/hash_map \ + $(TopDistDir)/include/llvm/ADT/hash_set \ + $(TopDistDir)/include/llvm/ADT/iterator \ + $(TopDistDir)/include/llvm/Config/config.h \ + $(TopDistDir)/include/llvm/Support/DataTypes.h \ + $(TopDistDir)/include/llvm/Support/ThreadSupport.h +tools-only: all