X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=e9cbc789ced47843fec5283b483579fab0595d63;hb=ec370fd3dce3c00cb0a5665cd3e65685325e7d09;hp=a9a59de8c1ab8120c17b953c6d4e62f0209e6528;hpb=6d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15;p=oota-llvm.git diff --git a/Makefile b/Makefile index a9a59de8c1a..e9cbc789ced 100644 --- a/Makefile +++ b/Makefile @@ -7,46 +7,38 @@ # #===------------------------------------------------------------------------===# LEVEL = . -DIRS = lib/Support utils lib tools +DIRS = lib/System lib/Support utils lib tools ifneq ($(MAKECMDGOALS),tools-only) -DIRS += runtime -OPTIONAL_DIRS = projects +DIRS += runtime docs +OPTIONAL_DIRS = examples projects endif -include $(LEVEL)/Makefile.common +EXTRA_DIST := test llvm.spec include -test :: all - cd test; $(MAKE) +include $(LEVEL)/Makefile.common -distclean:: clean - $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \ - $(LEVEL)/include/Config/config.h \ - $(LEVEL)/autoconf/autom4te.cache \ - $(LEVEL)/config.log \ - $(LEVEL)/TAGS +.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 + +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 - -# Install support for llvm include files: -.PHONY: install-includes - -install-includes: - $(MKDIR) $(DESTDIR)$(includedir)/llvm - cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm -ifneq ($(BUILD_SRC_ROOT),$(BUILD_OBJ_ROOT)) - cd $(BUILD_SRC_ROOT)/include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm -endif - -install:: install-includes - -# Build tags database for Emacs/Xemacs: -.PHONY: tags - -TAGS: tags - -all:: tags - -tags: - $(ETAGS) $(ETAGSFLAGS) `find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h'` -