2003-10-21 15:31:36 +00:00
|
|
|
##===- projects/sample/Makefile ----------------------------*- Makefile -*-===##
|
2003-06-30 22:13:48 +00:00
|
|
|
#
|
|
|
|
# This is a sample Makefile for a project that uses LLVM.
|
|
|
|
#
|
2003-10-21 15:31:36 +00:00
|
|
|
##===----------------------------------------------------------------------===##
|
2003-06-30 22:13:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Indicates our relative path to the top of the project's root directory.
|
|
|
|
#
|
|
|
|
LEVEL = .
|
|
|
|
|
|
|
|
#
|
|
|
|
# Directories that needs to be built.
|
|
|
|
#
|
2003-09-06 15:03:24 +00:00
|
|
|
DIRS = lib tools
|
2003-06-30 22:13:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Include the Master Makefile that knows how to build all.
|
|
|
|
#
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|