~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/gc/boehm/Makefile.unix

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Primary targets:
 
2
# gc.a - builds basic library
 
3
# libgc.a - builds library for use with g++ "-fgc-keyword" extension
 
4
# c++ - adds C++ interface to library
 
5
# cords - adds cords (heavyweight strings) to library
 
6
# test - prints porting information, then builds basic version of gc.a,
 
7
#        and runs some tests of collector and cords.  Does not add cords or
 
8
#        c++ interface to gc.a
 
9
# cord/de - builds dumb editor based on cords.
 
10
ABI_FLAG=
 
11
CC=gcc $(ABI_FLAG)
 
12
CXX=g++ $(ABI_FLAG)
 
13
AS=as $(ABI_FLAG)
 
14
#  The above doesn't work with gas, which doesn't run cpp.
 
15
#  Define AS as `gcc -c -x assembler-with-cpp' instead.
 
16
#  Under Irix 6, you will have to specify the ABI (-o32, -n32, or -64)
 
17
#  if you use something other than the default ABI on your machine.
 
18
 
 
19
#CFLAGS= -O -DATOMIC_UNCOLLECTABLE -DNO_SIGNALS -DNO_EXECUTE_PERMISSION -DALL_INTERIOR_POINTERS -DSILENT
 
20
CFLAGS= -g -DATOMIC_UNCOLLECTABLE -DNO_SIGNALS -DNO_EXECUTE_PERMISSION -DALL_INTERIOR_POINTERS -DSILENT
 
21
 
 
22
 
 
23
# For dynamic library builds, it may be necessary to add flags to generate
 
24
# PIC code, e.g. -fPIC on Linux.
 
25
 
 
26
# Setjmp_test may yield overly optimistic results when compiled
 
27
# without optimization.
 
28
# -DSILENT disables statistics printing, and improves performance.
 
29
# -DCHECKSUMS reports on erroneously clear dirty bits, and unexpectedly
 
30
#   altered stubborn objects, at substantial performance cost.
 
31
#   Use only for incremental collector debugging.
 
32
# -DFIND_LEAK causes the collector to assume that all inaccessible
 
33
#   objects should have been explicitly deallocated, and reports exceptions.
 
34
#   Finalization and the test program are not usable in this mode.
 
35
# -DSOLARIS_THREADS enables support for Solaris (thr_) threads.
 
36
#   (Clients should also define SOLARIS_THREADS and then include
 
37
#   gc.h before performing thr_ or dl* or GC_ operations.)
 
38
#   Must also define -D_REENTRANT.
 
39
# -D_SOLARIS_PTHREADS enables support for Solaris pthreads.
 
40
#   Define SOLARIS_THREADS as well.
 
41
# -DIRIX_THREADS enables support for Irix pthreads.  See README.irix.
 
42
# -DLINUX_THREADS enables support for Xavier Leroy's Linux threads.
 
43
#   see README.linux.  -D_REENTRANT may also be required.
 
44
# -DALL_INTERIOR_POINTERS allows all pointers to the interior
 
45
#   of objects to be recognized.  (See gc_priv.h for consequences.)
 
46
# -DSMALL_CONFIG tries to tune the collector for small heap sizes,
 
47
#   usually causing it to use less space in such situations.
 
48
#   Incremental collection no longer works in this case.
 
49
# -DLARGE_CONFIG tunes the collector for unusually large heaps.
 
50
#   Necessary for heaps larger than about 500 MB on most machines.
 
51
#   Recommended for heaps larger than about 64 MB.
 
52
# -DDONT_ADD_BYTE_AT_END is meaningful only with
 
53
#   -DALL_INTERIOR_POINTERS.  Normally -DALL_INTERIOR_POINTERS
 
54
#   causes all objects to be padded so that pointers just past the end of
 
55
#   an object can be recognized.  This can be expensive.  (The padding
 
56
#   is normally more than one byte due to alignment constraints.)
 
57
#   -DDONT_ADD_BYTE_AT_END disables the padding.
 
58
# -DNO_SIGNALS does not disable signals during critical parts of
 
59
#   the GC process.  This is no less correct than many malloc 
 
60
#   implementations, and it sometimes has a significant performance
 
61
#   impact.  However, it is dangerous for many not-quite-ANSI C
 
62
#   programs that call things like printf in asynchronous signal handlers.
 
63
# -DNO_EXECUTE_PERMISSION may cause some or all of the heap to not
 
64
#   have execute permission, i.e. it may be impossible to execute
 
65
#   code from the heap.  Currently this only affects the incremental
 
66
#   collector on UNIX machines.  It may greatly improve its performance,
 
67
#   since this may avoid some expensive cache synchronization.
 
68
# -DOPERATOR_NEW_ARRAY declares that the C++ compiler supports the
 
69
#   new syntax "operator new[]" for allocating and deleting arrays.
 
70
#   See gc_cpp.h for details.  No effect on the C part of the collector.
 
71
#   This is defined implicitly in a few environments.
 
72
# -DREDIRECT_MALLOC=X causes malloc, realloc, and free to be defined
 
73
#   as aliases for X, GC_realloc, and GC_free, respectively.
 
74
#   Calloc is redefined in terms of the new malloc.  X should
 
75
#   be either GC_malloc or GC_malloc_uncollectable.
 
76
#   The former is occasionally useful for working around leaks in code
 
77
#   you don't want to (or can't) look at.  It may not work for
 
78
#   existing code, but it often does.  Neither works on all platforms,
 
79
#   since some ports use malloc or calloc to obtain system memory.
 
80
#   (Probably works for UNIX, and win32.)
 
81
# -DIGNORE_FREE turns calls to free into a noop.  Only useful with
 
82
#   -DREDIRECT_MALLOC.
 
83
# -DNO_DEBUGGING removes GC_dump and the debugging routines it calls.
 
84
#   Reduces code size slightly at the expense of debuggability.
 
85
# -DJAVA_FINALIZATION makes it somewhat safer to finalize objects out of
 
86
#   order by specifying a nonstandard finalization mark procedure  (see
 
87
#   finalize.c).  Objects reachable from finalizable objects will be marked
 
88
#   in a sepearte postpass, and hence their memory won't be reclaimed.
 
89
#   Not recommended unless you are implementing a language that specifies
 
90
#   these semantics.
 
91
# -DFINALIZE_ON_DEMAND causes finalizers to be run only in response
 
92
#   to explicit GC_invoke_finalizers() calls.
 
93
# -DATOMIC_UNCOLLECTABLE includes code for GC_malloc_atomic_uncollectable.
 
94
#   This is useful if either the vendor malloc implementation is poor,
 
95
#   or if REDIRECT_MALLOC is used.
 
96
# -DHBLKSIZE=ddd, where ddd is a power of 2 between 512 and 16384, explicitly
 
97
#   sets the heap block size.  Each heap block is devoted to a single size and
 
98
#   kind of object.  For the incremental collector it makes sense to match
 
99
#   the most likely page size.  Otherwise large values result in more
 
100
#   fragmentation, but generally better performance for large heaps.
 
101
# -DUSE_MMAP use MMAP instead of sbrk to get new memory.
 
102
#   Works for Solaris and Irix.
 
103
# -DMMAP_STACKS (for Solaris threads) Use mmap from /dev/zero rather than
 
104
#   GC_scratch_alloc() to get stack memory.
 
105
# -DPRINT_BLACK_LIST Whenever a black list entry is added, i.e. whenever
 
106
#   the garbage collector detects a value that looks almost, but not quite,
 
107
#   like a pointer, print both the address containing the value, and the
 
108
#   value of the near-bogus-pointer.  Can be used to identifiy regions of
 
109
#   memory that are likely to contribute misidentified pointers.
 
110
# -DOLD_BLOCK_ALLOC Use the old, possibly faster, large block
 
111
#   allocation strategy.  The new strategy tries harder to minimize
 
112
#   fragmentation, sometimes at the expense of spending more time in the
 
113
#   large block allocator and/or collecting more frequently.
 
114
#   If you expect the allocator to promtly use an explicitly expanded
 
115
#   heap, this is highly recommended.
 
116
#
 
117
 
 
118
LIBGC_CFLAGS= -O -DNO_SIGNALS -DSILENT \
 
119
    -DREDIRECT_MALLOC=GC_malloc_uncollectable \
 
120
    -DDONT_ADD_BYTE_AT_END -DALL_INTERIOR_POINTERS \
 
121
        -DLINUX_THREADS -D_REENTRANT -fPIC
 
122
 
 
123
#LIBGC_CFLAGS= -O -DNO_SIGNALS -DSILENT \
 
124
#    -DREDIRECT_MALLOC=GC_malloc_uncollectable \
 
125
#    -DDONT_ADD_BYTE_AT_END -DALL_INTERIOR_POINTERS
 
126
#   Flags for building libgc.a -- the last two are required.
 
127
 
 
128
CXXFLAGS= $(CFLAGS) 
 
129
AR= ar
 
130
RANLIB= ranlib
 
131
 
 
132
 
 
133
# Redefining srcdir allows object code for the nonPCR version of the collector
 
134
# to be generated in different directories.  In this case, the destination directory
 
135
# should contain a copy of the original include directory.
 
136
srcdir = .
 
137
VPATH = $(srcdir)
 
138
 
 
139
OBJS= alloc.o reclaim.o allchblk.o misc.o mach_dep.o os_dep.o mark_rts.o headers.o mark.o obj_map.o blacklst.o finalize.o new_hblk.o dbg_mlc.o malloc.o stubborn.o checksums.o solaris_threads.o irix_threads.o linux_threads.o typd_mlc.o ptr_chck.o mallocx.o solaris_pthreads.o
 
140
 
 
141
CSRCS= reclaim.c allchblk.c misc.c alloc.c mach_dep.c os_dep.c mark_rts.c headers.c mark.c obj_map.c pcr_interface.c blacklst.c finalize.c new_hblk.c real_malloc.c dyn_load.c dbg_mlc.c malloc.c stubborn.c checksums.c solaris_threads.c irix_threads.c linux_threads.c typd_mlc.c ptr_chck.c mallocx.c solaris_pthreads.c
 
142
 
 
143
CORD_SRCS=  cord/cordbscs.c cord/cordxtra.c cord/cordprnt.c cord/de.c cord/cordtest.c cord/cord.h cord/ec.h cord/private/cord_pos.h cord/de_win.c cord/de_win.h cord/de_cmds.h cord/de_win.ICO cord/de_win.RC cord/SCOPTIONS.amiga cord/SMakefile.amiga
 
144
 
 
145
CORD_OBJS=  cord/cordbscs.o cord/cordxtra.o cord/cordprnt.o
 
146
 
 
147
SRCS= $(CSRCS) mips_sgi_mach_dep.s rs6000_mach_dep.s alpha_mach_dep.s \
 
148
    sparc_mach_dep.s gc.h gc_typed.h gc_hdrs.h gc_priv.h gc_private.h \
 
149
    gcconfig.h gc_mark.h include/gc_inl.h include/gc_inline.h gc.man \
 
150
    threadlibs.c if_mach.c if_not_there.c gc_cpp.cc gc_cpp.h weakpointer.h \
 
151
    gcc_support.c mips_ultrix_mach_dep.s include/gc_alloc.h gc_alloc.h \
 
152
    include/new_gc_alloc.h include/javaxfc.h sparc_sunos4_mach_dep.s \
 
153
    solaris_threads.h $(CORD_SRCS)
 
154
 
 
155
OTHER_FILES= Makefile PCR-Makefile OS2_MAKEFILE NT_MAKEFILE BCC_MAKEFILE \
 
156
           README test.c test_cpp.cc setjmp_t.c SMakefile.amiga \
 
157
           SCoptions.amiga README.amiga README.win32 cord/README \
 
158
           cord/gc.h include/gc.h include/gc_typed.h include/cord.h \
 
159
           include/ec.h include/private/cord_pos.h include/private/gcconfig.h \
 
160
           include/private/gc_hdrs.h include/private/gc_priv.h \
 
161
           include/gc_cpp.h README.rs6000 \
 
162
           include/weakpointer.h README.QUICK callprocs pc_excludes \
 
163
           barrett_diagram README.OS2 README.Mac MacProjects.sit.hqx \
 
164
           MacOS.c EMX_MAKEFILE makefile.depend README.debugging \
 
165
           include/gc_cpp.h Mac_files/datastart.c Mac_files/dataend.c \
 
166
           Mac_files/MacOS_config.h Mac_files/MacOS_Test_config.h \
 
167
           add_gc_prefix.c README.solaris2 README.sgi README.hp README.uts \
 
168
           win32_threads.c NT_THREADS_MAKEFILE gc.mak README.dj Makefile.dj \
 
169
           README.alpha README.linux version.h Makefile.DLLs \
 
170
           WCC_MAKEFILE
 
171
 
 
172
CORD_INCLUDE_FILES= $(srcdir)/gc.h $(srcdir)/cord/cord.h $(srcdir)/cord/ec.h \
 
173
           $(srcdir)/cord/private/cord_pos.h
 
174
 
 
175
UTILS= if_mach if_not_there threadlibs
 
176
 
 
177
# Libraries needed for curses applications.  Only needed for de.
 
178
CURSES= -lcurses -ltermlib
 
179
 
 
180
# The following is irrelevant on most systems.  But a few
 
181
# versions of make otherwise fork the shell specified in
 
182
# the SHELL environment variable.
 
183
SHELL= /bin/sh
 
184
 
 
185
SPECIALCFLAGS = 
 
186
# Alternative flags to the C compiler for mach_dep.c.
 
187
# Mach_dep.c often doesn't like optimization, and it's
 
188
# not time-critical anyway.
 
189
# Set SPECIALCFLAGS to -q nodirect_code on Encore.
 
190
 
 
191
all: gc.a gctest
 
192
 
 
193
pcr: PCR-Makefile gc_private.h gc_hdrs.h gc.h gcconfig.h mach_dep.o $(SRCS)
 
194
        make -f PCR-Makefile depend
 
195
        make -f PCR-Makefile
 
196
 
 
197
$(OBJS) test.o dyn_load.o dyn_load_sunos53.o: $(srcdir)/gc_priv.h $(srcdir)/gc_hdrs.h $(srcdir)/gc.h \
 
198
    $(srcdir)/gcconfig.h $(srcdir)/gc_typed.h Makefile
 
199
# The dependency on Makefile is needed.  Changing
 
200
# options such as -DSILENT affects the size of GC_arrays,
 
201
# invalidating all .o files that rely on gc_priv.h
 
202
 
 
203
mark.o typd_mlc.o finalize.o: $(srcdir)/gc_mark.h
 
204
 
 
205
base_lib gc.a: $(OBJS) dyn_load.o $(UTILS)
 
206
        echo > base_lib
 
207
        rm -f on_sparc_sunos5_1
 
208
        ./if_mach SPARC SUNOS5 touch on_sparc_sunos5_1
 
209
        ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(OBJS) dyn_load.o
 
210
        ./if_not_there on_sparc_sunos5_1 $(AR) ru gc.a $(OBJS) dyn_load.o
 
211
        ./if_not_there on_sparc_sunos5_1 $(RANLIB) gc.a || cat /dev/null
 
212
#       ignore ranlib failure; that usually means it doesn't exist, and isn't needed
 
213
 
 
214
cords: $(CORD_OBJS) cord/cordtest $(UTILS)
 
215
        rm -f on_sparc_sunos5_3
 
216
        ./if_mach SPARC SUNOS5 touch on_sparc_sunos5_3
 
217
        ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(CORD_OBJS)
 
218
        ./if_not_there on_sparc_sunos5_3 $(AR) ru gc.a $(CORD_OBJS)
 
219
        ./if_not_there on_sparc_sunos5_3 $(RANLIB) gc.a || cat /dev/null
 
220
 
 
221
gc_cpp.o: $(srcdir)/gc_cpp.cc $(srcdir)/gc_cpp.h $(srcdir)/gc.h Makefile
 
222
        $(CXX) -c $(CXXFLAGS) $(srcdir)/gc_cpp.cc
 
223
 
 
224
test_cpp: $(srcdir)/test_cpp.cc $(srcdir)/gc_cpp.h gc_cpp.o $(srcdir)/gc.h \
 
225
base_lib $(UTILS)
 
226
        rm -f test_cpp
 
227
        ./if_mach HP_PA "" $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a -ldld
 
228
        ./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a `./threadlibs`
 
229
 
 
230
c++: gc_cpp.o $(srcdir)/gc_cpp.h test_cpp
 
231
        rm -f on_sparc_sunos5_4
 
232
        ./if_mach SPARC SUNOS5 touch on_sparc_sunos5_4
 
233
        ./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
 
234
        ./if_not_there on_sparc_sunos5_4 $(AR) ru gc.a gc_cpp.o
 
235
        ./if_not_there on_sparc_sunos5_4 $(RANLIB) gc.a || cat /dev/null
 
236
        ./test_cpp 1
 
237
        echo > c++
 
238
 
 
239
dyn_load_sunos53.o: dyn_load.c
 
240
        $(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
 
241
 
 
242
# SunOS5 shared library version of the collector
 
243
sunos5gc.so: $(OBJS) dyn_load_sunos53.o
 
244
        $(CC) -G -o sunos5gc.so $(OBJS) dyn_load_sunos53.o -ldl
 
245
        ln sunos5gc.so libgc.so
 
246
 
 
247
# Alpha/OSF shared library version of the collector
 
248
libalphagc.so: $(OBJS)
 
249
        ld -shared -o libalphagc.so $(OBJS) dyn_load.o -lc
 
250
        ln libalphagc.so libgc.so
 
251
 
 
252
# IRIX shared library version of the collector
 
253
libirixgc.so: $(OBJS) dyn_load.o
 
254
        ld -shared $(ABI_FLAG) -o libirixgc.so $(OBJS) dyn_load.o -lc
 
255
        ln libirixgc.so libgc.so
 
256
 
 
257
# Linux shared library version of the collector
 
258
liblinuxgc.so: $(OBJS) dyn_load.o
 
259
        gcc -shared -o liblinuxgc.so $(OBJS) dyn_load.o -lo
 
260
        ln liblinuxgc.so libgc.so
 
261
 
 
262
# Alternative Linux rule.  This is preferable, but is likely to break the
 
263
# Makefile for some non-linux platforms.
 
264
# LIBOBJS= $(patsubst %.o, %.lo, $(OBJS))
 
265
#
 
266
#.SUFFIXES: .lo $(SUFFIXES)
 
267
#
 
268
#.c.lo:
 
269
#       $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c $< -o $@
 
270
#
 
271
# liblinuxgc.so: $(LIBOBJS) dyn_load.lo
 
272
#       gcc -shared -Wl,-soname=libgc.so.0 -o libgc.so.0 $(LIBOBJS) dyn_load.lo
 
273
#       touch liblinuxgc.so
 
274
 
 
275
mach_dep.o: $(srcdir)/mach_dep.c $(srcdir)/mips_sgi_mach_dep.s $(srcdir)/mips_ultrix_mach_dep.s $(srcdir)/rs6000_mach_dep.s $(UTILS)
 
276
        rm -f mach_dep.o
 
277
        ./if_mach MIPS IRIX5 $(AS) -o mach_dep.o $(srcdir)/mips_sgi_mach_dep.s
 
278
        ./if_mach MIPS RISCOS $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
 
279
        ./if_mach MIPS ULTRIX $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
 
280
        ./if_mach RS6000 "" $(AS) -o mach_dep.o $(srcdir)/rs6000_mach_dep.s
 
281
        ./if_mach ALPHA "" $(AS) -o mach_dep.o $(srcdir)/alpha_mach_dep.s
 
282
        ./if_mach SPARC SUNOS5 $(AS) -o mach_dep.o $(srcdir)/sparc_mach_dep.s
 
283
        ./if_mach SPARC SUNOS4 $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
 
284
        ./if_not_there mach_dep.o $(CC) -c $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
 
285
 
 
286
mark_rts.o: $(srcdir)/mark_rts.c if_mach if_not_there $(UTILS)
 
287
        rm -f mark_rts.o
 
288
        -./if_mach ALPHA OSF1 $(CC) -c $(CFLAGS) -Wo,-notail $(srcdir)/mark_rts.c
 
289
        ./if_not_there mark_rts.o $(CC) -c $(CFLAGS) $(srcdir)/mark_rts.c
 
290
#       Work-around for DEC optimizer tail recursion elimination bug.
 
291
#  The ALPHA-specific line should be removed if gcc is used.
 
292
 
 
293
alloc.o: version.h
 
294
 
 
295
cord/cordbscs.o: $(srcdir)/cord/cordbscs.c $(CORD_INCLUDE_FILES)
 
296
        $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordbscs.c
 
297
        mv cordbscs.o cord/cordbscs.o
 
298
#  not all compilers understand -o filename
 
299
 
 
300
cord/cordxtra.o: $(srcdir)/cord/cordxtra.c $(CORD_INCLUDE_FILES)
 
301
        $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordxtra.c
 
302
        mv cordxtra.o cord/cordxtra.o
 
303
 
 
304
cord/cordprnt.o: $(srcdir)/cord/cordprnt.c $(CORD_INCLUDE_FILES)
 
305
        $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordprnt.c
 
306
        mv cordprnt.o cord/cordprnt.o
 
307
 
 
308
cord/cordtest: $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a $(UTILS)
 
309
        rm -f cord/cordtest
 
310
        ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -lucb
 
311
        ./if_mach HP_PA "" $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -ldld
 
312
        ./if_not_there cord/cordtest $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
 
313
 
 
314
cord/de: $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(UTILS)
 
315
        rm -f cord/de
 
316
        ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -lucb `./threadlibs`
 
317
        ./if_mach HP_PA "" $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -ldld
 
318
        ./if_mach RS6000 "" $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
 
319
        ./if_mach I386 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
 
320
        ./if_mach ALPHA LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
 
321
        ./if_not_there cord/de $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) `./threadlibs`
 
322
 
 
323
if_mach: $(srcdir)/if_mach.c $(srcdir)/gcconfig.h
 
324
        $(CC) $(CFLAGS) -o if_mach $(srcdir)/if_mach.c
 
325
 
 
326
threadlibs: $(srcdir)/threadlibs.c $(srcdir)/gcconfig.h Makefile
 
327
        $(CC) $(CFLAGS) -o threadlibs $(srcdir)/threadlibs.c
 
328
 
 
329
if_not_there: $(srcdir)/if_not_there.c
 
330
        $(CC) $(CFLAGS) -o if_not_there $(srcdir)/if_not_there.c
 
331
 
 
332
clean: 
 
333
        rm -f gc.a *.o gctest gctest_dyn_link test_cpp \
 
334
              setjmp_test  mon.out gmon.out a.out core if_not_there if_mach \
 
335
              threadlibs $(CORD_OBJS) cord/cordtest cord/de
 
336
        -rm -f *~
 
337
 
 
338
gctest: test.o gc.a if_mach if_not_there
 
339
        rm -f gctest
 
340
        ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o gctest  test.o gc.a -lucb
 
341
        ./if_mach HP_PA "" $(CC) $(CFLAGS) -o gctest  test.o gc.a -ldld
 
342
        ./if_not_there gctest $(CC) $(CFLAGS) -o gctest test.o gc.a `./threadlibs`
 
343
 
 
344
# If an optimized setjmp_test generates a segmentation fault,
 
345
# odds are your compiler is broken.  Gctest may still work.
 
346
# Try compiling setjmp_t.c unoptimized.
 
347
setjmp_test: $(srcdir)/setjmp_t.c $(srcdir)/gc.h if_mach if_not_there
 
348
        $(CC) $(CFLAGS) -o setjmp_test $(srcdir)/setjmp_t.c
 
349
 
 
350
test:  KandRtest cord/cordtest
 
351
        cord/cordtest
 
352
 
 
353
# Those tests that work even with a K&R C compiler:
 
354
KandRtest: setjmp_test gctest
 
355
        ./setjmp_test
 
356
        ./gctest
 
357
 
 
358
add_gc_prefix: add_gc_prefix.c
 
359
        $(CC) -o add_gc_prefix $(srcdir)/add_gc_prefix.c
 
360
 
 
361
gc.tar: $(SRCS) $(OTHER_FILES) add_gc_prefix
 
362
        ./add_gc_prefix $(SRCS) $(OTHER_FILES) > /tmp/gc.tar-files
 
363
        (cd $(srcdir)/.. ; tar cvfh - `cat /tmp/gc.tar-files`) > gc.tar
 
364
 
 
365
pc_gc.tar: $(SRCS) $(OTHER_FILES)
 
366
        tar cvfX pc_gc.tar pc_excludes $(SRCS) $(OTHER_FILES)
 
367
 
 
368
floppy: pc_gc.tar
 
369
        -mmd a:/cord
 
370
        -mmd a:/cord/private
 
371
        -mmd a:/include
 
372
        -mmd a:/include/private
 
373
        mkdir /tmp/pc_gc
 
374
        cat pc_gc.tar | (cd /tmp/pc_gc; tar xvf -)
 
375
        -mcopy -tmn /tmp/pc_gc/* a:
 
376
        -mcopy -tmn /tmp/pc_gc/cord/* a:/cord
 
377
        -mcopy -mn /tmp/pc_gc/cord/de_win.ICO a:/cord
 
378
        -mcopy -tmn /tmp/pc_gc/cord/private/* a:/cord/private
 
379
        -mcopy -tmn /tmp/pc_gc/include/* a:/include
 
380
        -mcopy -tmn /tmp/pc_gc/include/private/* a:/include/private
 
381
        rm -r /tmp/pc_gc
 
382
 
 
383
gc.tar.Z: gc.tar
 
384
        compress gc.tar
 
385
 
 
386
gc.tar.gz: gc.tar
 
387
        gzip gc.tar
 
388
 
 
389
lint: $(CSRCS) test.c
 
390
        lint -DLINT $(CSRCS) test.c | egrep -v "possible pointer alignment problem|abort|exit|sbrk|mprotect|syscall|change in ANSI|improper alignment"
 
391
 
 
392
# BTL: added to test shared library version of collector.
 
393
# Currently works only under SunOS5.  Requires GC_INIT call from statically
 
394
# loaded client code.
 
395
ABSDIR = `pwd`
 
396
gctest_dyn_link: test.o libgc.so
 
397
        $(CC) -L$(ABSDIR) -R$(ABSDIR) -o gctest_dyn_link test.o -lgc -ldl -lthread
 
398
 
 
399
gctest_irix_dyn_link: test.o libirixgc.so
 
400
        $(CC) -L$(ABSDIR) -o gctest_irix_dyn_link test.o -lirixgc
 
401
 
 
402
test_dll.o: test.c libgc_globals.h
 
403
        $(CC) $(CFLAGS) -DGC_USE_DLL -c test.c -o test_dll.o
 
404
 
 
405
test_dll: test_dll.o libgc_dll.a libgc.dll
 
406
        $(CC) test_dll.o -L$(ABSDIR) -lgc_dll -o test_dll
 
407
 
 
408
SYM_PREFIX-libgc=GC
 
409
 
 
410
# Uncomment the following line to build a GNU win32 DLL
 
411
# include Makefile.DLLs
 
412
 
 
413
reserved_namespace: $(SRCS)
 
414
        for file in $(SRCS) test.c test_cpp.cc; do \
 
415
                sed s/GC_/_GC_/g < $$file > tmp; \
 
416
                cp tmp $$file; \
 
417
                done
 
418
 
 
419
user_namespace: $(SRCS)
 
420
        for file in $(SRCS) test.c test_cpp.cc; do \
 
421
                sed s/_GC_/GC_/g < $$file > tmp; \
 
422
                cp tmp $$file; \
 
423
                done