summaryrefslogtreecommitdiff
path: root/projects/sample/tools/sample/Makefile
blob: 8f384ffd949fdc7fefbdbba9923542ff3a8a6733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
# 
#                     The LLVM Compiler Infrastructure
#
# This file was developed by the LLVM research group and is distributed under
# the University of Illinois Open Source License. See LICENSE.TXT for details.
# 
##===----------------------------------------------------------------------===##
#
# Indicate where we are relative to the top of the source tree.
#
LEVEL=../..

#
# Give the name of the tool.
#
TOOLNAME=sample

#
# List libraries that we'll need
# We use LIBS because sample is a dynamic library.
#
LIBS+=-lsample

#
# Include Makefile.common so we know what to do.
#
include $(LEVEL)/Makefile.common