X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=ddc782380e8dac56fda2c7576510717bc1983f5b;hb=1fc37395607e374be50d09a89b63b2b318e653bf;hp=4cbf53a8f07c9893d4745841299461e07856a2c0;hpb=59932233c60fb8df343377c236f72d06ae9e1876;p=oota-llvm.git diff --git a/Makefile b/Makefile index 4cbf53a8f07..ddc782380e8 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,17 @@ -##===- ./Makefile ------------------------------------------*- Makefile -*-===## +#===- ./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. # -##===----------------------------------------------------------------------===## +#===------------------------------------------------------------------------===# LEVEL = . DIRS = lib/Support utils lib tools -OPTIONAL_DIRS = projects ifneq ($(MAKECMDGOALS),tools-only) DIRS += runtime +OPTIONAL_DIRS = projects endif include $(LEVEL)/Makefile.common @@ -32,8 +32,11 @@ tools-only: all .PHONY: install-includes install-includes: - $(MKDIR) $(includedir)/llvm - cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm + $(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 +endif install:: install-includes