]> granicus.if.org Git - clang/commitdiff
Install c-index-test and clang-c/Index.h as internal files. rdar://10217046
authorBob Wilson <bob.wilson@apple.com>
Mon, 28 Nov 2011 08:03:54 +0000 (08:03 +0000)
committerBob Wilson <bob.wilson@apple.com>
Mon, 28 Nov 2011 08:03:54 +0000 (08:03 +0000)
Specify that these files should be installed to the optional internal
install location as specified by configure's --with-internal-prefix.
If that option is not used, they'll be installed to the default prefix
as before.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145235 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang-c/Makefile
tools/c-index-test/Makefile

index 98ea7190e687b5cfef825c2c87bc10dfd4b25a66..3f3ae5843ec0319bf1557bfa1a7876380b8098fd 100644 (file)
@@ -3,21 +3,23 @@ DIRS :=
 
 include $(CLANG_LEVEL)/Makefile
 
+IntIncludeDir = $(DESTDIR)$(PROJ_internal_prefix)/include
+
 install-local::
        $(Echo) Installing Clang C API include files
-       $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
+       $(Verb) $(MKDIR) $(IntIncludeDir)
        $(Verb) if test -d "$(PROJ_SRC_ROOT)/tools/clang/include/clang-c" ; then \
          cd $(PROJ_SRC_ROOT)/tools/clang/include && \
          for  hdr in `find clang-c -type f '!' '(' -name '*~' \
              -o -name '.#*' -o -name '*.in' -o -name '*.txt' \
              -o -name 'Makefile' -o -name '*.td' ')' -print \
               | grep -v CVS | grep -v .svn | grep -v .dir` ; do \
-           instdir=$(DESTDIR)`dirname "$(PROJ_includedir)/$$hdr"` ; \
+           instdir=`dirname "$(IntIncludeDir)/$$hdr"` ; \
            if test \! -d "$$instdir" ; then \
              $(EchoCmd) Making install directory $$instdir ; \
              $(MKDIR) $$instdir ;\
            fi ; \
-           $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
+           $(DataInstall) $$hdr $(IntIncludeDir)/$$hdr ; \
          done ; \
        fi
 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
@@ -25,7 +27,7 @@ ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
          cd $(PROJ_OBJ_ROOT)/tools/clang/include && \
          for hdr in `find clang-c -type f '!' '(' -name 'Makefile' ')' -print \
             | grep -v CVS | grep -v .tmp | grep -v .dir` ; do \
-           $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
+           $(DataInstall) $$hdr $(IntIncludeDir)/$$hdr ; \
          done ; \
        fi
 endif
index c21b3279a287014f572678fabb230dd29ed8a711..471ce912d0ee7b3591b15158b8fc5bf63e38e486 100644 (file)
@@ -10,6 +10,10 @@ CLANG_LEVEL := ../..
 
 TOOLNAME = c-index-test
 
+# If a separate install prefix was specified for internal tools, use it
+# when installing c-index-test.
+INTERNAL_TOOL = 1
+
 # No plugins, optimize startup time.
 TOOL_NO_EXPORTS = 1