Merged with tip.
[cacao.git] / src / mm / boehm-gc / Makefile.am
1 # Copyright (c) 1999-2001 by Red Hat, Inc. All rights reserved.
2
3 # THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
4 # OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
5
6 # Permission is hereby granted to use or copy this program
7 # for any purpose,  provided the above notices are retained on all copies.
8 # Permission to modify the code and to distribute modified code is granted,
9 # provided the above notices are retained, and a notice that the code was
10 # modified is included with the above copyright notice.
11 #
12 # Original author: Tom Tromey
13 # Severely truncated by Hans-J. Boehm
14 # Modified by: Grzegorz Jakacki <jakacki at acm dot org>
15 # Modified by: Petter Urkedal <petter.urkedal@nordita.dk> (2005-04)
16
17 ## Process this file with automake to produce Makefile.in.
18
19 DISTCLEANFILES = \
20         atomic_ops.c \
21         atomic_ops_sysdeps.S \
22         libatomic_ops
23
24 ## FIXME: `make distcheck' in this directory will not currently work.
25 ##     This is most likely to the explicit flags passed to submakes.
26
27 # We currently use the source files directly from libatomic_ops, if we
28 # use the internal version.  This is done since libatomic_ops doesn't
29 # use libtool, since it has no real use for it.  But that seems to make
30 # it hard to use either the resulting object files or libraries.
31 # Thus there seems too be no real reason to recusively build in the
32 # libatomic_ops directory.
33 # if USE_INTERNAL_LIBATOMICS_OPS
34 # SUBDIRS = @maybe_libatomic_ops@
35 # else
36 # SUBDIRS =
37 # endif
38 SUBDIRS =
39
40 # Initialize variables so that we can declare files locally.
41 EXTRA_DIST = 
42 noinst_LTLIBRARIES =
43 # Don't install include/gc
44 #include_HEADERS =
45 #pkginclude_HEADERS =
46 dist_noinst_HEADERS =
47 check_PROGRAMS =
48 TESTS =
49
50 # Don't install pkg-config data.
51 #pkgconfigdir = $(libdir)/pkgconfig
52 #dist_pkgconfig_DATA = bdw-gc.pc
53
54 # C Library
55 # ---------
56
57 noinst_LTLIBRARIES += libgc.la
58 libgc_la_SOURCES = \
59         allchblk.c alloc.c blacklst.c checksums.c dbg_mlc.c \
60         dyn_load.c finalize.c gc_dlopen.c gcj_mlc.c headers.c \
61         malloc.c mallocx.c mark.c mark_rts.c misc.c new_hblk.c \
62         obj_map.c os_dep.c pcr_interface.c ptr_chck.c real_malloc.c reclaim.c \
63         specific.c stubborn.c typd_mlc.c \
64         backgraph.c thread_local_alloc.c
65
66 # C Library: Architecture Dependent
67 # ---------------------------------
68
69 if PTHREADS
70 libgc_la_SOURCES += pthread_support.c pthread_stop_world.c
71 endif
72
73 if DARWIN_THREADS
74 libgc_la_SOURCES += darwin_stop_world.c
75 endif
76
77 if WIN32_THREADS
78 libgc_la_SOURCES += win32_threads.c
79 endif
80
81 if USE_INTERNAL_LIBATOMIC_OPS    
82 nodist_libgc_la_SOURCES = ./atomic_ops.c         
83 endif    
84
85 if NEED_ATOMIC_OPS_ASM   
86 nodist_libgc_la_SOURCES = ./atomic_ops_sysdeps.S         
87 endif
88
89 # Include THREADDLLIBS here to ensure that the correct versions of
90 # linuxthread semaphore functions get linked:
91 libgc_la_LIBADD = @addobjs@ $(THREADDLLIBS) $(UNWINDLIBS)
92 libgc_la_DEPENDENCIES = @addobjs@
93 libgc_la_LDFLAGS = $(extra_ldflags_libgc) -version-info 1:3:0 -no-undefined
94
95 EXTRA_libgc_la_SOURCES = alpha_mach_dep.S \
96     mips_sgi_mach_dep.s mips_ultrix_mach_dep.s \
97     rs6000_mach_dep.s sparc_mach_dep.S sparc_netbsd_mach_dep.s \
98     sparc_sunos4_mach_dep.s ia64_save_regs_in_stack.s
99
100
101 # C++ Interface
102 # -------------
103
104 if CPLUSPLUS
105 noinst_LTLIBRARIES += libgccpp.la
106 #pkginclude_HEADERS += include/gc_cpp.h include/gc_allocator.h
107 libgccpp_la_SOURCES = gc_cpp.cc
108 libgccpp_la_LIBADD = ./libgc.la
109 libgccpp_la_LDFLAGS = -version-info 1:3:0 -no-undefined
110 endif
111
112 # FIXME: If Visual C++ users use Makefile.am, this should go into
113 # pkginclude_HEADERS with proper AM_CONDITIONALization.  Otherwise
114 # delete this comment.
115 EXTRA_DIST += gc_cpp.cpp
116
117
118 # Misc
119 # ----
120
121 #AM_CXXFLAGS = @GC_CFLAGS@
122 #AM_CFLAGS = @GC_CFLAGS@
123 AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_builddir)/libatomic_ops/src
124
125 ## FIXME: relies on internal code generated by automake.
126 ## FIXME: ./configure --enable-dependency-tracking should be used 
127 #all_objs = @addobjs@ $(libgc_la_OBJECTS)
128 #$(all_objs) : include/private/gcconfig.h include/private/gc_priv.h \
129 #include/private/gc_hdrs.h include/gc.h include/gc_gcj.h \
130 #include/gc_pthread_redirects.h include/gc_config_macros.h \
131 #include/private/thread_local_alloc.h include/private_support.h \
132 #include/private/pthread_stop_world.h \
133 #include/gc_mark.h @addincludes@
134
135 ## FIXME: we shouldn't have to do this, but automake forces us to.
136 ## We use -Wp,-P to strip #line directives.  Irix `as' chokes on
137 ## these.
138 if COMPILER_XLC
139   ## XLC neither requires nor tolerates the unnecessary assembler goop
140   ASM_CPP_OPTIONS =
141 else
142   ## We use -Wp,-P to strip #line directives.  Irix `as' chokes on
143   ## these.
144   ASM_CPP_OPTIONS = -Wp,-P -x assembler-with-cpp
145 endif
146 .s.lo:
147         $(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
148
149 .S.lo:
150         $(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
151
152 ## We need to add DEFS to assembler flags
153 ## :FIXME: what if assembler does not accept -D... ?
154 ##     (use Autoconf to prepare ASDEFS ???)
155
156 CCASFLAGS += $(DEFS)
157
158 dist_noinst_SCRIPTS = callprocs configure.host
159     ## callprocs --- used by Makefile.{dj,direct}
160     ## configure.host --- used by Makefile.{am,dj,direct}
161
162 # headers which are not installed
163 # (see include/include.am for more)
164 #
165
166 # documentation which is not installed
167 #
168 EXTRA_DIST += README.QUICK
169
170 # other makefiles
171 # :GOTCHA: deliberately we do not include 'Makefile'
172 EXTRA_DIST += BCC_MAKEFILE NT_MAKEFILE NT_THREADS_MAKEFILE \
173     OS2_MAKEFILE PCR-Makefile digimars.mak EMX_MAKEFILE \
174     Makefile.direct Makefile.dj Makefile.DLLs SMakefile.amiga \
175     WCC_MAKEFILE configure_atomic_ops.sh \
176     NT_STATIC_THREADS_MAKEFILE NT_X64_STATIC_THREADS_MAKEFILE \
177     NT_X64_THREADS_MAKEFILE
178
179 # files used by makefiles other than Makefile.am
180 #
181 EXTRA_DIST += add_gc_prefix.c gcname.c if_mach.c if_not_there.c \
182     hpux_test_and_clear.s gc.mak MacOS.c \
183     MacProjects.sit.hqx mach_dep.c setjmp_t.c \
184     threadlibs.c AmigaOS.c \
185     Mac_files/datastart.c Mac_files/dataend.c \
186     Mac_files/MacOS_config.h Mac_files/MacOS_Test_config.h \
187     include/private/msvc_dbg.h msvc_dbg.c
188
189 # The libatomic_ops library.  This is not ideal, since we pick up junk from
190 # there.  The hard-coded version number should also go.
191 EXTRA_DIST += libatomic_ops-1.2
192
193 # this is an auxiliary shell file used by Makefile and Makefile.direct
194 #
195 CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host
196
197 # :FIXME: why do we distribute this one???
198 #
199 #EXTRA_DIST += libtool.m4
200
201 #
202 # :GOTCHA: GNU make rule for making .s out of .S is flawed, 
203 # it will not remove dest if building fails
204 .S.s:
205         if $(CPP) $< >$@ ; then :; else rm -f $@; fi
206
207 include include/include.am
208 include cord/cord.am
209 include tests/tests.am
210 include doc/doc.am
211 # Putting these at the top causes cord to be built first, and not find libgc.a
212 # on HP/UX.  There may be a better fix.
213
214