Files
llvm-6502/projects/sample/tools/sample/Makefile
2007-02-18 03:03:41 +00:00

24 lines
409 B
Makefile

##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
#
# 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.
#
USEDLIBS = sample.a
#
# Include Makefile.common so we know what to do.
#
include $(LEVEL)/Makefile.common