2004-08-24 02:06:31 +08:00
|
|
|
##===- examples/Makefile -----------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-30 04:11:13 +08:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2004-08-24 02:06:31 +08:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-08-24 03:29:54 +08:00
|
|
|
LEVEL=..
|
2004-08-24 02:06:31 +08:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2010-02-10 11:38:29 +08:00
|
|
|
PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT Kaleidoscope ModuleMaker
|
2006-06-01 09:09:43 +08:00
|
|
|
|
2006-12-01 08:37:14 +08:00
|
|
|
ifeq ($(HAVE_PTHREAD),1)
|
2007-03-07 01:26:14 +08:00
|
|
|
PARALLEL_DIRS += ParallelJIT
|
2006-06-01 09:09:43 +08:00
|
|
|
endif
|
2004-08-24 02:06:31 +08:00
|
|
|
|
2010-02-10 11:38:29 +08:00
|
|
|
ifeq ($(LLVM_ON_UNIX),1)
|
|
|
|
PARALLEL_DIRS += ExceptionDemo
|
|
|
|
endif
|
|
|
|
|
2004-08-24 03:29:54 +08:00
|
|
|
include $(LEVEL)/Makefile.common
|