blob: 488d5895a89a09c2ed06425aff17c491636b9c96 [file] [log] [blame]
Reid Spencerc21214a2004-08-23 18:06:31 +00001##===- examples/Makefile -----------------------------------*- Makefile -*-===##
Reid Spencerf3b47552004-08-19 20:09:14 +00002#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner57360d12007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Reid Spencerf3b47552004-08-19 20:09:14 +00007#
8##===----------------------------------------------------------------------===##
Reid Spencer3a168a72004-08-23 19:29:54 +00009LEVEL=..
Reid Spencerf3b47552004-08-19 20:09:14 +000010
11include $(LEVEL)/Makefile.config
12
Garrison Venna2c2f1a2010-02-09 23:22:43 +000013PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT Kaleidoscope ModuleMaker \
14 ExceptionDemo
Reid Spencerb756c792006-06-01 01:09:43 +000015
Reid Spencer1000b732006-12-01 00:37:14 +000016ifeq ($(HAVE_PTHREAD),1)
Reid Spencerc20c6c32007-03-06 17:26:14 +000017PARALLEL_DIRS += ParallelJIT
Reid Spencerb756c792006-06-01 01:09:43 +000018endif
Reid Spencerf3b47552004-08-19 20:09:14 +000019
Reid Spencer3a168a72004-08-23 19:29:54 +000020include $(LEVEL)/Makefile.common