This pass is not needed, as there is only ever one global: the stack
[oota-llvm.git] / projects / Makefile
index 5465268ecf1bb769f75ed1e10d4311be471f2749..1e89f6d91bdd3bd9e64bc86aca510c5f3a057e84 100644 (file)
@@ -10,7 +10,12 @@ LEVEL=..
 
 include $(LEVEL)/Makefile.config
 
-DIRS=
-OPTIONAL_DIRS:=$(basename $(shell ls $(SourceDir) | grep -v CVS | grep -v Makefile))
+DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile)))
+
+# Sparc cannot link shared libraries (libtool problem?) which Stacker uses
+ifeq ($(ARCH), Sparc)
+DIRS := $(filter-out Stacker, $(DIRS))
+DIRS := $(filter-out sample, $(DIRS))
+endif
 
 include $(BUILD_SRC_ROOT)/Makefile.rules