2003-11-23 17:51:56 +00:00
|
|
|
##===- projects/Stacker/Makefile ---------------------------*- Makefile -*-===##
|
2003-11-23 17:51:37 +00:00
|
|
|
#
|
|
|
|
# This is a sample Makefile for a project that uses LLVM.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
#
|
|
|
|
# Indicates our relative path to the top of the project's root directory.
|
|
|
|
#
|
|
|
|
LEVEL = ../..
|
|
|
|
|
|
|
|
#
|
|
|
|
# Directories that needs to be built.
|
|
|
|
#
|
2003-11-24 02:57:25 +00:00
|
|
|
# Disable the 'test' and 'samples' subdirectories until they work correctly
|
|
|
|
#DIRS = lib tools test samples
|
|
|
|
DIRS = lib tools
|
2003-11-23 17:51:37 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Include the Master Makefile that knows how to build all.
|
|
|
|
#
|
|
|
|
include $(LEVEL)/Makefile.common
|