X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=projects%2FMakefile;h=8be3d40c2e50e36e50f6bbf5fa51e9e99950828a;hp=9c7590580af4f3f9a91eada13de1aaab7d942432;hb=f70414f3d06cacd8a681bd756248ca71e50d1817;hpb=9c3c65806fa23e921e6acecb5166e67d7c3a5b22 diff --git a/projects/Makefile b/projects/Makefile index 9c7590580af..8be3d40c2e5 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -10,6 +10,11 @@ LEVEL=.. include $(LEVEL)/Makefile.config -DIRS:= $(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile)) +DIRS:= $(filter-out llvm-test,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile))) -include $(BUILD_SRC_ROOT)/Makefile.rules +# Sparc cannot link shared libraries (libtool problem?) +ifeq ($(ARCH), Sparc) +DIRS := $(filter-out sample, $(DIRS)) +endif + +include $(PROJ_SRC_ROOT)/Makefile.rules