forked from bdwgc/bdwgc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
241 lines (192 loc) · 6.24 KB
/
Copy pathMakefile.am
File metadata and controls
241 lines (192 loc) · 6.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# Copyright (c) 1999-2001 by Red Hat, Inc. All rights reserved.
#
# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
#
# Permission is hereby granted to use or copy this program
# for any purpose, provided the above notices are retained on all copies.
# Permission to modify the code and to distribute modified code is granted,
# provided the above notices are retained, and a notice that the code was
# modified is included with the above copyright notice.
## Process this file with `automake` to produce `Makefile.in` file.
# We currently use the source files directly from `libatomic_ops` directory,
# if we use the internal variant. (Thus there seems to be no real reason to
# recursively build in the `libatomic_ops` directory.)
SUBDIRS =
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = \
-I$(top_builddir)/include -I$(top_srcdir)/include \
$(ATOMIC_OPS_CFLAGS)
## Initialize variables so that we can declare files locally.
EXTRA_DIST =
lib_LTLIBRARIES =
include_HEADERS =
pkginclude_HEADERS =
dist_noinst_HEADERS =
check_PROGRAMS =
check_LTLIBRARIES =
TESTS =
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = bdw-gc.pc
# C Library
# ---------
lib_LTLIBRARIES += libgc.la
if SINGLE_GC_OBJ
libgc_la_SOURCES = extra/gc.c
if PTHREAD_START_STANDALONE
AM_CPPFLAGS += -DGC_PTHREAD_START_STANDALONE
libgc_la_SOURCES += pthread_start.c
endif
else
EXTRA_DIST += extra/gc.c
libgc_la_SOURCES = \
allchblk.c alloc.c blacklst.c dbg_mlc.c dyn_load.c finalize.c \
headers.c mach_dep.c malloc.c mallocx.c mark.c mark_rts.c misc.c \
new_hblk.c os_dep.c ptr_chck.c reclaim.c typd_mlc.c
if MAKE_BACK_GRAPH
libgc_la_SOURCES += backgraph.c
endif
if CHECKSUMS
libgc_la_SOURCES += checksums.c
endif
if ENABLE_DISCLAIM
libgc_la_SOURCES += fnlz_mlc.c
endif
if ENABLE_GCJ_SUPPORT
libgc_la_SOURCES += gcj_mlc.c
endif
# C library: architecture dependent
# ---------------------------------
if THREADS
libgc_la_SOURCES += gc_dlopen.c pthread_start.c pthread_support.c
if THREAD_LOCAL_ALLOC
libgc_la_SOURCES += specific.c thread_local_alloc.c
endif
if WIN32_THREADS
libgc_la_SOURCES += win32_threads.c
else
if DARWIN_THREADS
libgc_la_SOURCES += darwin_stop_world.c
else
libgc_la_SOURCES += pthread_stop_world.c
endif
endif
endif
## End of !SINGLE_GC_OBJ
endif
if USE_INTERNAL_LIBATOMIC_OPS
nodist_libgc_la_SOURCES = libatomic_ops/src/atomic_ops.c
if NEED_ATOMIC_OPS_ASM
nodist_libgc_la_SOURCES += libatomic_ops/src/atomic_ops_sysdeps.S
endif
endif
# Include `THREADDLLIBS` here to ensure that the correct versions of
# LinuxThreads semaphore (and `clock_gettime`) functions get linked:
libgc_la_LIBADD = @addobjs@ $(THREADDLLIBS) $(UNWINDLIBS) $(ATOMIC_OPS_LIBS)
libgc_la_DEPENDENCIES = @addobjs@
libgc_la_LDFLAGS = $(extra_ldflags_libgc) -version-info @LIBGC_VER_INFO@ \
-no-undefined
EXTRA_libgc_la_SOURCES = ia64_save_regs_in_stack.s sparc_mach_dep.S \
sparc_netbsd_mach_dep.s
if CPLUSPLUS
# C++ Interface
# -------------
lib_LTLIBRARIES += libgccpp.la
libgccpp_la_SOURCES = gc_badalc.cc gc_cpp.cc
libgccpp_la_LIBADD = libgc.la
libgccpp_la_LDFLAGS = -version-info @LIBGCCPP_VER_INFO@ -no-undefined
if GC_TBA_LIBRARY
# The same as `libgccpp` but contains only `gc_badalc.o` file.
lib_LTLIBRARIES += libgctba.la
libgctba_la_SOURCES = gc_badalc.cc
libgctba_la_LIBADD = libgc.la
# Set the same version as for `libgccpp`.
libgctba_la_LDFLAGS = -version-info @LIBGCCPP_VER_INFO@ -no-undefined
endif
endif
EXTRA_DIST += gc_badalc.cpp gc_cpp.cpp
# Misc
# ----
AM_CXXFLAGS = $(WERROR_CFLAGS) @GC_CFLAGS@
AM_CFLAGS = $(WERROR_CFLAGS) @GC_CFLAGS@
CFLAGS += $(CFLAGS_EXTRA)
CXXFLAGS += $(CFLAGS_EXTRA)
## FIXME: relies on internal code generated by `automake`.
## FIXME: `./configure --enable-dependency-tracking` should be used.
## FIXME: we should not have to do this, but `automake` forces us to.
## We use `-Wp,-P` to strip `#line` directives. Irix `as` chokes on these.
if ASM_WITH_CPP_UNSUPPORTED
ASM_CPP_OPTIONS =
else
ASM_CPP_OPTIONS = -Wp,-P -x assembler-with-cpp
endif
.s.lo:
$(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
.S.lo:
$(LTCOMPILE) $(ASM_CPP_OPTIONS) -c $<
## We need to add `DEFS` to assembler flags.
## :FIXME: what if assembler does not accept `-D...` ?
## (use `autoconf` to prepare `ASDEFS`?)
CCASFLAGS += $(DEFS)
# The headers which are not installed (see `include/include.am` file for more).
# Other makefiles.
EXTRA_DIST += Makefile.direct NT_MAKEFILE WCC_MAKEFILE digimars.mak \
autogen.sh build.zig build.zig.zon CMakeLists.txt Config.cmake.in
# The files used by makefiles other than `Makefile.am` file.
EXTRA_DIST += tools/if_mach.c tools/if_not_there.c tools/setjmp_t.c \
tools/threadlibs.c tools/callprocs.sh extra/msvc_dbg.c \
extra/symbian/global_end.cpp extra/symbian/global_start.cpp \
extra/symbian/init_global_static_roots.cpp extra/symbian.cpp
# :GOTCHA: GNU `make` rule for making `.s` out of `.S` is flawed, it will
# not remove dest if building fails.
.S.s:
if $(CPP) $< >$@ ; then :; else rm -f $@; fi
include include/include.am
include cord/cord.am
include tests/tests.am
## Putting these at the top causes cord to be built first, and not find
## `libgc.a` file on HP/UX. There may be a better fix.
# Installed documentation.
if ENABLE_DOCS
dist_doc_DATA = \
AUTHORS \
ChangeLog \
LICENSE \
README.md
docdocsdir = $(docdir)/docs
dist_docdocs_DATA = \
docs/autoconf.md \
docs/cmake.md \
docs/cords.md \
docs/debugging.md \
docs/environment.md \
docs/faq.md \
docs/finalization.md \
docs/gcdescr.md \
docs/gcinterface.md \
docs/leak.md \
docs/macros.md \
docs/overview.md \
docs/porting.md \
docs/scale.md \
docs/simple_example.md \
docs/tree.md
docdocsplatformsdir = $(docdocsdir)/platforms
dist_docdocsplatforms_DATA = \
docs/platforms/README.aix \
docs/platforms/README.darwin \
docs/platforms/README.dgux386 \
docs/platforms/README.emscripten \
docs/platforms/README.ews4800 \
docs/platforms/README.hp \
docs/platforms/README.linux \
docs/platforms/README.os2 \
docs/platforms/README.sgi \
docs/platforms/README.solaris2 \
docs/platforms/README.symbian \
docs/platforms/README.win32 \
docs/platforms/README.win64
dist_man3_MANS = gc.man
endif
# A dummy target for `mono` build.
test-bundle: