mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Change the install-includes target to completely ignore the llvm/Internal
directory. Headers located there are not public to LLVM but are shared between LLVM modules. llvm-svn: 13769
This commit is contained in:
parent
8e6d7148c1
commit
da4904a879
4
Makefile
4
Makefile
@ -33,9 +33,9 @@ tools-only: all
|
|||||||
|
|
||||||
install-includes:
|
install-includes:
|
||||||
$(MKDIR) $(DESTDIR)$(includedir)/llvm
|
$(MKDIR) $(DESTDIR)$(includedir)/llvm
|
||||||
cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(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))
|
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
|
cd $(BUILD_SRC_ROOT)/include && find * -path '*/Internal' -prune -o '(' '!' '(' -name '*~' -o -name .cvsignore ')' -print ')' | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm
|
||||||
endif
|
endif
|
||||||
|
|
||||||
install:: install-includes
|
install:: install-includes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user