implemented Setup.hs to build boehm cpp libs and install them;
[hs-boehmgc.git] / gc-7.2 / 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 recursively 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 ACLOCAL_AMFLAGS = -I m4
36 AM_CPPFLAGS = \
37         -I$(top_builddir)/include -I$(top_srcdir)/include \
38         $(ATOMIC_OPS_CFLAGS)
39
40 # Initialize variables so that we can declare files locally.
41 EXTRA_DIST =
42 lib_LTLIBRARIES =
43 include_HEADERS =
44 pkginclude_HEADERS =
45 dist_noinst_HEADERS =
46 check_PROGRAMS =
47 check_LTLIBRARIES =
48 TESTS =
49
50 pkgconfigdir = $(libdir)/pkgconfig
51 pkgconfig_DATA = bdw-gc.pc
52
53 # C Library
54 # ---------
55
56 lib_LTLIBRARIES += libgc.la
57 libgc_la_SOURCES = \
58         allchblk.c alloc.c blacklst.c checksums.c dbg_mlc.c \
59         dyn_load.c finalize.c gc_dlopen.c gcj_mlc.c headers.c \
60         malloc.c mallocx.c mark.c mark_rts.c misc.c new_hblk.c \
61         obj_map.c os_dep.c pcr_interface.c ptr_chck.c real_malloc.c reclaim.c \
62         specific.c stubborn.c typd_mlc.c \
63         backgraph.c thread_local_alloc.c
64
65 # C Library: Architecture Dependent
66 # ---------------------------------
67
68 if PTHREADS
69 libgc_la_SOURCES += pthread_start.c pthread_support.c pthread_stop_world.c
70 endif
71
72 if DARWIN_THREADS
73 libgc_la_SOURCES += darwin_stop_world.c
74 endif
75
76 if WIN32_THREADS
77 libgc_la_SOURCES += win32_threads.c
78 endif
79
80 if USE_INTERNAL_LIBATOMIC_OPS
81 nodist_libgc_la_SOURCES = libatomic_ops/src/atomic_ops.c
82 endif
83
84 if NEED_ATOMIC_OPS_ASM
85 nodist_libgc_la_SOURCES = libatomic_ops/src/atomic_ops_sysdeps.S
86 endif
87
88 # Include THREADDLLIBS here to ensure that the correct versions of
89 # linuxthread semaphore functions get linked:
90 libgc_la_LIBADD = @addobjs@ $(THREADDLLIBS) $(UNWINDLIBS) $(ATOMIC_OPS_LIBS)
91 libgc_la_DEPENDENCIES = @addobjs@
92 libgc_la_LDFLAGS = $(extra_ldflags_libgc) -version-info 1:3:0 -no-undefined
93
94 EXTRA_libgc_la_SOURCES = alpha_mach_dep.S \
95     mips_sgi_mach_dep.s mips_ultrix_mach_dep.s \
96     rs6000_mach_dep.s sparc_mach_dep.S sparc_netbsd_mach_dep.s \
97     sparc_sunos4_mach_dep.s ia64_save_regs_in_stack.s
98
99
100 # C++ Interface
101 # -------------
102
103 if CPLUSPLUS
104 lib_LTLIBRARIES += libgccpp.la
105 pkginclude_HEADERS += include/gc_cpp.h
106 include_HEADERS += include/extra/gc_cpp.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
124 ## FIXME: relies on internal code generated by automake.
125 ## FIXME: ./configure --enable-dependency-tracking should be used
126 #all_objs = @addobjs@ $(libgc_la_OBJECTS)
127 #$(all_objs) : include/private/gcconfig.h include/private/gc_priv.h \
128 #include/private/gc_hdrs.h include/gc.h include/gc_gcj.h \
129 #include/gc_pthread_redirects.h include/gc_config_macros.h \
130 #include/private/thread_local_alloc.h include/private_support.h \
131 #include/private/pthread_stop_world.h \
132 #include/gc_mark.h @addincludes@
133
134 ## FIXME: we shouldn't have to do this, but automake forces us to.
135 ## We use -Wp,-P to strip #line directives.  Irix `as' chokes on
136 ## these.
137 if COMPILER_XLC
138   ## XLC neither requires nor tolerates the unnecessary assembler goop
139   ASM_CPP_OPTIONS =
140 else
141   ## We use -Wp,-P to strip #line directives.  Irix `as' chokes on
142   ## these.
143   ASM_CPP_OPTIONS = -Wp,-P -x assembler-with-cpp
144 endif
145 .s.lo:
146         $(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
147
148 .S.lo:
149         $(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
150
151 ## We need to add DEFS to assembler flags
152 ## :FIXME: what if assembler does not accept -D... ?
153 ##     (use Autoconf to prepare ASDEFS ???)
154
155 CCASFLAGS += $(DEFS)
156
157 dist_noinst_SCRIPTS = callprocs configure.host
158     ## callprocs --- used by Makefile.{dj,direct}
159     ## configure.host --- used by Makefile.{am,dj,direct}
160
161 # headers which are not installed
162 # (see include/include.am for more)
163 #
164
165 # documentation which is not installed
166 #
167 EXTRA_DIST += README.QUICK
168
169 # other makefiles
170 # :GOTCHA: deliberately we do not include 'Makefile'
171 EXTRA_DIST += BCC_MAKEFILE NT_MAKEFILE \
172     OS2_MAKEFILE PCR-Makefile digimars.mak EMX_MAKEFILE \
173     Makefile.direct Makefile.dj Makefile.DLLs SMakefile.amiga \
174     WCC_MAKEFILE autogen.sh build_atomic_ops.sh build_atomic_ops.sh.cygwin \
175     NT_STATIC_THREADS_MAKEFILE NT_X64_STATIC_THREADS_MAKEFILE \
176     NT_X64_THREADS_MAKEFILE CMakeLists.txt tests/CMakeLists.txt
177
178 # files used by makefiles other than Makefile.am
179 #
180 EXTRA_DIST += extra/add_gc_prefix.c extra/gc.c extra/gcname.c \
181     extra/if_mach.c extra/if_not_there.c gc.mak \
182     extra/MacOS.c MacProjects.sit.hqx mach_dep.c extra/setjmp_t.c \
183     extra/threadlibs.c extra/AmigaOS.c \
184     Mac_files/datastart.c Mac_files/dataend.c \
185     Mac_files/MacOS_config.h Mac_files/MacOS_Test_config.h \
186     include/private/msvc_dbg.h extra/msvc_dbg.c
187
188 # this is an auxiliary shell file used by Makefile and Makefile.direct
189 #
190 CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host
191
192 #
193 # :GOTCHA: GNU make rule for making .s out of .S is flawed,
194 # it will not remove dest if building fails
195 .S.s:
196         if $(CPP) $< >$@ ; then :; else rm -f $@; fi
197
198 include include/include.am
199 include cord/cord.am
200 include tests/tests.am
201 include doc/doc.am
202 # Putting these at the top causes cord to be built first, and not find libgc.a
203 # on HP/UX.  There may be a better fix.