8f384ffd949fdc7fefbdbba9923542ff3a8a6733
[oota-llvm.git] / projects / sample / tools / sample / Makefile
1 ##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
2
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 ##===----------------------------------------------------------------------===##
9 #
10 # Indicate where we are relative to the top of the source tree.
11 #
12 LEVEL=../..
13
14 #
15 # Give the name of the tool.
16 #
17 TOOLNAME=sample
18
19 #
20 # List libraries that we'll need
21 # We use LIBS because sample is a dynamic library.
22 #
23 LIBS+=-lsample
24
25 #
26 # Include Makefile.common so we know what to do.
27 #
28 include $(LEVEL)/Makefile.common
29