From 9f60a494156986659722ae2038002956540ea1fc Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 5 Dec 2004 05:18:16 +0000 Subject: [PATCH] Build a module instead of a library so main() is not missed git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18525 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/Stacker/lib/runtime/Makefile | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/projects/Stacker/lib/runtime/Makefile b/projects/Stacker/lib/runtime/Makefile index 37b0849f9f0..d3ebf18fc55 100644 --- a/projects/Stacker/lib/runtime/Makefile +++ b/projects/Stacker/lib/runtime/Makefile @@ -1,18 +1,14 @@ ##===- projects/Stacker/lib/runtime/Makefile ---------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by Reid Spencer and is distributed under the +# University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## -# -# Indicate where we are relative to the top of the source tree. -# -LEVEL=../../ +LEVEL = ../.. +DONT_BUILD_RELINKED = 1 +MODULE_NAME = stkr_runtime -# -# Give the name of a library. This will build a dynamic version. -# -BYTECODE_LIBRARY=1 -DONT_BUILD_RELINKED=1 -LIBRARYNAME=stkr_runtime - -# -# Include Makefile.common so we know what to do. -# include $(LEVEL)/Makefile.common