2004-09-04 19:48:50 +00:00
|
|
|
##===- projects/Stacker/lib/stkrc/Makefile -----------------*- Makefile -*-===##
|
2003-11-23 18:01:26 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Indicate where we are relative to the top of the source tree.
|
|
|
|
#
|
2004-09-04 19:48:50 +00:00
|
|
|
LEVEL=../..
|
2003-11-23 18:01:26 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Give the name of a library. This will build a dynamic version.
|
|
|
|
#
|
2004-10-27 23:18:45 +00:00
|
|
|
TOOLNAME = stkrc
|
2005-10-27 00:53:16 +00:00
|
|
|
LLVMLIBS = LLVMAsmParser LLVMBCWriter LLVMipo.a \
|
2005-10-27 16:30:44 +00:00
|
|
|
LLVMScalarOpts.a LLVMTransforms.a LLVMTransformUtils.a LLVMipa.a LLVMAnalysis.a LLVMTarget.a \
|
2004-11-25 20:22:06 +00:00
|
|
|
LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
|
2005-05-19 00:54:10 +00:00
|
|
|
CONFIG_FILES = st
|
|
|
|
EXTRA_DIST = st
|
2004-09-04 19:48:50 +00:00
|
|
|
USEDLIBS=stkr_compiler
|
2004-09-04 19:05:53 +00:00
|
|
|
|
2003-11-23 18:01:26 +00:00
|
|
|
|
|
|
|
ifdef PARSE_DEBUG
|
|
|
|
CPPFLAGS = -DPARSE_DEBUG=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef FLEX_DEBUG
|
|
|
|
CPPFLAGS += -DFLEX_DEBUG=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# Include Makefile.common so we know what to do.
|
|
|
|
#
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|