1##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
2
3#
4# Indicate where we are relative to the top of the source tree.
5#
6LEVEL=../..
7
8#
9# Give the name of the tool.
10#
11TOOLNAME=Sample
12
13#
14# List libraries that we'll need
15# We use LIBS because sample is a dynamic library.
16#
17USEDLIBS = sample.a
18
19#
20# Include Makefile.common so we know what to do.
21#
22include $(LEVEL)/Makefile.common
23
24