mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-13 08:25:27 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34387 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
409 B
Makefile
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
|
|
|