blob: 4251ab39c5be485c28e29c07e78287835fffeef8 [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#
5# This file was developed by the LLVM research group and is distributed under
6# the University of Illinois Open Source License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
Reid Spencer3a168a72004-08-23 19:29:54 +00009LEVEL=..
Reid Spencerf3b47552004-08-19 20:09:14 +000010
11include $(LEVEL)/Makefile.config
12
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000013PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT ModuleMaker
Reid Spencerb756c792006-06-01 01:09:43 +000014
Reid Spencer1000b732006-12-01 00:37:14 +000015ifeq ($(HAVE_PTHREAD),1)
Reid Spencerc20c6c32007-03-06 17:26:14 +000016PARALLEL_DIRS += ParallelJIT
Reid Spencerb756c792006-06-01 01:09:43 +000017endif
Reid Spencerf3b47552004-08-19 20:09:14 +000018
Reid Spencer3a168a72004-08-23 19:29:54 +000019include $(LEVEL)/Makefile.common