aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/GC
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-17 00:24:24 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-17 00:24:24 +0000
commitda0a22b7ace53e256a01c4f2b9e6d46ecbdd91bb (patch)
treebd3ede4349dda14ae8d84361b3c1f8dcf3c2511e /runtime/GC
parentaa717415bf22e0de40961a09d108999845976d34 (diff)
downloadexternal_llvm-da0a22b7ace53e256a01c4f2b9e6d46ecbdd91bb.zip
external_llvm-da0a22b7ace53e256a01c4f2b9e6d46ecbdd91bb.tar.gz
external_llvm-da0a22b7ace53e256a01c4f2b9e6d46ecbdd91bb.tar.bz2
Initial Makefile.am for building with automake
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17073 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/GC')
-rw-r--r--runtime/GC/Makefile.am15
-rw-r--r--runtime/GC/SemiSpace/Makefile.am17
2 files changed, 32 insertions, 0 deletions
diff --git a/runtime/GC/Makefile.am b/runtime/GC/Makefile.am
new file mode 100644
index 0000000..3e9f01f
--- /dev/null
+++ b/runtime/GC/Makefile.am
@@ -0,0 +1,15 @@
+#===-- runtime/GC/Makefile.am ------------------------------*- 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.
+#
+#===------------------------------------------------------------------------===#
+
+SUBDIRS = SemiSpace
+
+EXTRA_DIST = gc_exported_symbols.lst GCInterface.h
+
+include $(top_srcdir)/Makefile_config
+
diff --git a/runtime/GC/SemiSpace/Makefile.am b/runtime/GC/SemiSpace/Makefile.am
new file mode 100644
index 0000000..7f5eea9
--- /dev/null
+++ b/runtime/GC/SemiSpace/Makefile.am
@@ -0,0 +1,17 @@
+#===-- runtime/GC/SemiSpace/Makefile.am --------------------*- 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.
+#
+#===------------------------------------------------------------------------===#
+
+lib_LIBRARIES = libGCSemiSpace.a
+libGCSemiSpace_a_SOURCES = semispace.c
+
+BYTECODE_LIBRARY = $(lib_LIBRARIES)
+
+EXPORTED_SYMBOL_FILE = $(srcdir)/../gc_exported_symbols.lst
+
+include $(top_srcdir)/Makefile_config