blob: b6228b87f9127b4ac32278cfb644a9327ad21f2d [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001##===- projects/Makefile ------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner3876aa72007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007#
8##===----------------------------------------------------------------------===##
9LEVEL=..
10
11include $(LEVEL)/Makefile.config
12
13DIRS:= $(filter-out llvm-test,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
14
15# Sparc cannot link shared libraries (libtool problem?)
16ifeq ($(ARCH), Sparc)
17DIRS := $(filter-out sample, $(DIRS))
18endif
19
20include $(PROJ_SRC_ROOT)/Makefile.rules