forked from apple/swift-clang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move include installation steps to better location, inside each inclu…
…de dir instead of at the top-level. Also, don't set NO_INSTALL=1 for c-index-test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102724 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
5 changed files
with
59 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
LEVEL = ../../.. | ||
DIRS := clang | ||
DIRS := clang clang-c | ||
|
||
include $(LEVEL)/Makefile.common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
LEVEL = ../../../.. | ||
DIRS := | ||
|
||
include $(LEVEL)/Makefile.common | ||
|
||
install-local:: | ||
$(Echo) Installing Clang C API include files | ||
$(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir) | ||
$(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"` ; \ | ||
if test \! -d "$$instdir" ; then \ | ||
$(EchoCmd) Making install directory $$instdir ; \ | ||
$(MKDIR) $$instdir ;\ | ||
fi ; \ | ||
$(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \ | ||
done ; \ | ||
fi | ||
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) | ||
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang-c" ; then \ | ||
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 ; \ | ||
done ; \ | ||
fi | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters