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