| #===- ./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. |
| #===------------------------------------------------------------------------===# |
| DIRS = lib/System lib/Support utils lib tools |
| ifneq ($(MAKECMDGOALS),tools-only) |
| OPTIONAL_DIRS = examples projects |
| include $(LEVEL)/Makefile.common |
| $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \ |
| $(LEVEL)/include/llvm/Config/config.h \ |
| $(LEVEL)/autoconf/autom4te.cache \ |
| # Install support for llvm include files: |
| $(MKDIR) $(DESTDIR)$(includedir)/llvm |
| cd include && find * -path '*/Internal' -prune -o '(' '!' '(' -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 * -path '*/Internal' -prune -o '(' '!' '(' -name '*~' -o -name .cvsignore ')' -print ')' | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm |
| install:: install-includes |
| # Build tags database for Emacs/Xemacs: |
| find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) - |