diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-05 05:18:16 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-05 05:18:16 +0000 |
commit | d8d9fb325fa3893b410da1d4b17890aac184b3fd (patch) | |
tree | f1f529097cfc0a45c3b7b9b32672dee85740e235 /llvm/projects/Stacker/lib | |
parent | 107f57673230bb3ab51b7f8dc34fc98342196cff (diff) | |
download | bcm5719-llvm-d8d9fb325fa3893b410da1d4b17890aac184b3fd.tar.gz bcm5719-llvm-d8d9fb325fa3893b410da1d4b17890aac184b3fd.zip |
Build a module instead of a library so main() is not missed
llvm-svn: 18525
Diffstat (limited to 'llvm/projects/Stacker/lib')
-rw-r--r-- | llvm/projects/Stacker/lib/runtime/Makefile | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/llvm/projects/Stacker/lib/runtime/Makefile b/llvm/projects/Stacker/lib/runtime/Makefile index 37b0849f9f0..d3ebf18fc55 100644 --- a/llvm/projects/Stacker/lib/runtime/Makefile +++ b/llvm/projects/Stacker/lib/runtime/Makefile @@ -1,18 +1,14 @@ ##===- projects/Stacker/lib/runtime/Makefile ---------------*- Makefile -*-===## - -# -# Indicate where we are relative to the top of the source tree. +# +# The LLVM Compiler Infrastructure # -LEVEL=../../ +# This file was developed by Reid Spencer and is distributed under the +# University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## -# -# Give the name of a library. This will build a dynamic version. -# -BYTECODE_LIBRARY=1 -DONT_BUILD_RELINKED=1 -LIBRARYNAME=stkr_runtime +LEVEL = ../.. +DONT_BUILD_RELINKED = 1 +MODULE_NAME = stkr_runtime -# -# Include Makefile.common so we know what to do. -# include $(LEVEL)/Makefile.common |