From: Axel Naumann Date: Mon, 12 Oct 2009 16:42:18 +0000 (+0000) Subject: Don't install Makefiles nor tablegen input in include/. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1555c3a3b36043e14f2d4d839cfd5b8f2df0f9e5;p=clang Don't install Makefiles nor tablegen input in include/. Fix exclusion of .tmp, which in turn enables installation of $(PROJ_OBJ_ROOT)/tools/clang/include/*.inc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83855 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile b/Makefile index 16db680338..22fe214705 100644 --- a/Makefile +++ b/Makefile @@ -37,8 +37,9 @@ install-local:: $(Verb) if test -d "$(PROJ_SRC_ROOT)/tools/clang/include" ; then \ cd $(PROJ_SRC_ROOT)/tools/clang/include && \ for hdr in `find . -type f '!' '(' -name '*~' \ - -o -name '.#*' -o -name '*.in' -o -name '*.txt' ')' -print | grep -v CVS | \ - grep -v .svn` ; do \ + -o -name '.#*' -o -name '*.in' -o -name '*.txt' \ + -o -name 'Makefile' -o -name '*.td' ')' -print \ + | grep -v CVS | grep -v .svn` ; do \ instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \ if test \! -d "$$instdir" ; then \ $(EchoCmd) Making install directory $$instdir ; \ @@ -50,7 +51,8 @@ install-local:: ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include" ; then \ cd $(PROJ_OBJ_ROOT)/tools/clang/include && \ - for hdr in `find . -type f -print | grep -v CVS .tmp` ; do \ + for hdr in `find . -type f '!' '(' -name 'Makefile' ')' -print \ + | grep -v CVS | grep -v .tmp` ; do \ $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \ done ; \ fi