blob: 7f5eea9c691c3f36cbe672a19cba1df889987275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|