[llvm-commits] CVS: llvm/projects/Stacker/lib/runtime/Makefile
Reid Spencer
reid at x10sys.com
Sat Dec 4 21:18:27 PST 2004
Changes in directory llvm/projects/Stacker/lib/runtime:
Makefile updated: 1.3 -> 1.4
---
Log message:
Build a module instead of a library so main() is not missed
---
Diffs of the changes: (+9 -13)
Index: llvm/projects/Stacker/lib/runtime/Makefile
diff -u llvm/projects/Stacker/lib/runtime/Makefile:1.3 llvm/projects/Stacker/lib/runtime/Makefile:1.4
--- llvm/projects/Stacker/lib/runtime/Makefile:1.3 Sat Sep 4 14:48:50 2004
+++ llvm/projects/Stacker/lib/runtime/Makefile Sat Dec 4 23:18:16 2004
@@ -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
More information about the llvm-commits
mailing list