X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=b474a3a0674e65e1c1380d9c89a7d1da534230ce;hb=3255bd101dc214414f5668ee75a916eab66c3d18;hp=8467283c07b864d2e842f5b965e3396bb31243a7;hpb=67afaa1899bb51ca89a0ae40c1608802dfb2da74;p=oota-llvm.git diff --git a/Makefile b/Makefile index 8467283c07b..b474a3a0674 100644 --- a/Makefile +++ b/Makefile @@ -1,43 +1,71 @@ -##===- ./Makefile ------------------------------------------*- Makefile -*-===## +#===- ./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 -include $(LEVEL)/Makefile.common - -test :: all - cd test; $(MAKE) +ifeq ($(MAKECMDGOALS),tools-only) +DIRS += tools +else + ifneq ($(MAKECMDGOALS),libs-only) + DIRS += tools runtime docs + OPTIONAL_DIRS = examples projects + endif +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 -tools-only: - @for dir in lib/Support utils lib tools; do $(MAKE) -C $$dir; done - -configure: autoconf/configure.ac autoconf/aclocal.m4 - cd autoconf && aclocal && autoconf -o ../configure configure.ac +include $(LEVEL)/Makefile.common -include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4 - autoheader -I autoconf autoconf/configure.ac +# Specify options to pass to configure script when we're +# running the dist-check target +DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR) -# Install support for llvm include files. +.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 -.PHONY: install-includes +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 -install-includes: - $(MKDIR) $(includedir)/llvm - cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm +tools-only: all +libs-only: all -install:: install-includes +#------------------------------------------------------------------------ +# Make sure the generated headers are up-to-date. This must be kept in +# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac +#------------------------------------------------------------------------ +FilesToConfig := \ + include/llvm/Config/config.h \ + include/llvm/Support/DataTypes.h \ + include/llvm/ADT/hash_map \ + include/llvm/ADT/hash_set \ + include/llvm/ADT/iterator +FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) +all-local:: $(FilesToConfigPATH) +$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in + $(Echo) Regenerating $* + $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* +.PRECIOUS: $(FilesToConfigPATH)