blob: b6228b87f9127b4ac32278cfb644a9327ad21f2d [file] [log] [blame]
John Criswellac028f12003-10-20 22:28:01 +00001##===- projects/Makefile ------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner11cc8b32007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
John Criswellac028f12003-10-20 22:28:01 +00007#
8##===----------------------------------------------------------------------===##
John Criswell568d13c2003-06-30 22:12:19 +00009LEVEL=..
10
John Criswell4d29d2d2003-11-25 20:37:45 +000011include $(LEVEL)/Makefile.config
John Criswell568d13c2003-06-30 22:12:19 +000012
Reid Spencer0e48bf82005-01-16 02:21:29 +000013DIRS:= $(filter-out llvm-test,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
John Criswell4d29d2d2003-11-25 20:37:45 +000014
Chris Lattner24a0e7b2007-01-17 05:26:57 +000015# Sparc cannot link shared libraries (libtool problem?)
Misha Brukman77aedd12004-09-13 22:42:54 +000016ifeq ($(ARCH), Sparc)
Misha Brukmanc1f7bb02004-09-14 18:21:03 +000017DIRS := $(filter-out sample, $(DIRS))
Misha Brukman77aedd12004-09-13 22:42:54 +000018endif
19
Reid Spencer0e48bf82005-01-16 02:21:29 +000020include $(PROJ_SRC_ROOT)/Makefile.rules