[BACK]Return to Makefile.direct CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc

Annotation of OpenXM_contrib2/asir2000/gc/Makefile.direct, Revision 1.1

1.1     ! noro        1: # This is the original manually generated Makefile.  It may still be used
        !             2: # to build the collector.
        !             3: #
        !             4: # Primary targets:
        !             5: # gc.a - builds basic library
        !             6: # c++ - adds C++ interface to library
        !             7: # cords - adds cords (heavyweight strings) to library
        !             8: # test - prints porting information, then builds basic version of gc.a,
        !             9: #               and runs some tests of collector and cords.  Does not add cords or
        !            10: #       c++ interface to gc.a
        !            11: # cord/de - builds dumb editor based on cords.
        !            12: ABI_FLAG=
        !            13: # ABI_FLAG should be the cc flag that specifies the ABI.  On most
        !            14: # platforms this will be the empty string.  Possible values:
        !            15: # +DD64 for 64-bit executable on HP/UX.
        !            16: # -n32, -n64, -o32 for SGI/MIPS ABIs.
        !            17:
        !            18: AS_ABI_FLAG=$(ABI_FLAG)
        !            19: # ABI flag for assembler.  On HP/UX this is +A64 for 64 bit
        !            20: # executables.
        !            21:
        !            22: CC=cc $(ABI_FLAG)
        !            23: CXX=g++ $(ABI_FLAG)
        !            24: AS=as $(AS_ABI_FLAG)
        !            25: #  The above doesn't work with gas, which doesn't run cpp.
        !            26: #  Define AS as `gcc -c -x assembler-with-cpp' instead.
        !            27:
        !            28: # Redefining srcdir allows object code for the nonPCR version of the collector
        !            29: # to be generated in different directories.
        !            30: srcdir= .
        !            31: VPATH= $(srcdir)
        !            32:
        !            33: CFLAGS= -O -I$(srcdir)/include -DATOMIC_UNCOLLECTABLE -DNO_SIGNALS -DNO_EXECUTE_PERMISSION -DSILENT -DALL_INTERIOR_POINTERS
        !            34:
        !            35: # To build the parallel collector on Linux, add to the above:
        !            36: # -DGC_LINUX_THREADS -DPARALLEL_MARK -DTHREAD_LOCAL_ALLOC
        !            37: # To build the parallel collector n a static library on HP/UX, add to the above:
        !            38: # -DGC_HPUX_THREADS -DPARALLEL_MARK -DTHREAD_LOCAL_ALLOC -DUSE_HPUX_TLS -D_POSIX_C_SOURCE=199506L
        !            39:
        !            40: # HOSTCC and HOSTCFLAGS are used to build executables that will be run as
        !            41: # part of the build process, i.e. on the build machine.  These will usually
        !            42: # be the same as CC and CFLAGS, except in a cross-compilation environment.
        !            43: # Note that HOSTCFLAGS should include any -D flags that affect thread support.
        !            44: HOSTCC=$(CC)
        !            45: HOSTCFLAGS=$(CFLAGS)
        !            46:
        !            47: # For dynamic library builds, it may be necessary to add flags to generate
        !            48: # PIC code, e.g. -fPIC on Linux.
        !            49:
        !            50: # Setjmp_test may yield overly optimistic results when compiled
        !            51: # without optimization.
        !            52:
        !            53: # These define arguments influence the collector configuration:
        !            54: # -DSILENT disables statistics printing, and improves performance.
        !            55: # -DFIND_LEAK causes GC_find_leak to be initially set.
        !            56: #   This causes the collector to assume that all inaccessible
        !            57: #   objects should have been explicitly deallocated, and reports exceptions.
        !            58: #   Finalization and the test program are not usable in this mode.
        !            59: # -DGC_SOLARIS_THREADS enables support for Solaris (thr_) threads.
        !            60: #   (Clients should also define GC_SOLARIS_THREADS and then include
        !            61: #   gc.h before performing thr_ or dl* or GC_ operations.)
        !            62: #   Must also define -D_REENTRANT.
        !            63: # -DGC_SOLARIS_PTHREADS enables support for Solaris pthreads.
        !            64: #   (Internally this define GC_SOLARIS_THREADS as well.)
        !            65: # -DGC_IRIX_THREADS enables support for Irix pthreads.  See README.irix.
        !            66: # -DGC_HPUX_THREADS enables support for HP/UX 11 pthreads.
        !            67: #   Also requires -D_REENTRANT or -D_POSIX_C_SOURCE=199506L. See README.hp.
        !            68: # -DGC_LINUX_THREADS enables support for Xavier Leroy's Linux threads.
        !            69: #   see README.linux.  -D_REENTRANT may also be required.
        !            70: # -DGC_OSF1_THREADS enables support for Tru64 pthreads.  Untested.
        !            71: # -DGC_FREEBSD_THREADS enables support for FreeBSD pthreads.  Untested.
        !            72: #   Appeared to run into some underlying thread problems.
        !            73: # -DGC_DGUX386_THREADS enables support for DB/UX on I386 threads.
        !            74: #   See README.DGUX386.
        !            75: # -DALL_INTERIOR_POINTERS allows all pointers to the interior
        !            76: #   of objects to be recognized.  (See gc_priv.h for consequences.)
        !            77: #   Alternatively, GC_all_interior_pointers can be set at process
        !            78: #   initialization time.
        !            79: # -DSMALL_CONFIG tries to tune the collector for small heap sizes,
        !            80: #   usually causing it to use less space in such situations.
        !            81: #   Incremental collection no longer works in this case.
        !            82: # -DLARGE_CONFIG tunes the collector for unusually large heaps.
        !            83: #   Necessary for heaps larger than about 500 MB on most machines.
        !            84: #   Recommended for heaps larger than about 64 MB.
        !            85: # -DDONT_ADD_BYTE_AT_END is meaningful only with -DALL_INTERIOR_POINTERS or
        !            86: #   GC_all_interior_pointers = 1.  Normally -DALL_INTERIOR_POINTERS
        !            87: #   causes all objects to be padded so that pointers just past the end of
        !            88: #   an object can be recognized.  This can be expensive.  (The padding
        !            89: #   is normally more than one byte due to alignment constraints.)
        !            90: #   -DDONT_ADD_BYTE_AT_END disables the padding.
        !            91: # -DNO_SIGNALS does not disable signals during critical parts of
        !            92: #   the GC process.  This is no less correct than many malloc
        !            93: #   implementations, and it sometimes has a significant performance
        !            94: #   impact.  However, it is dangerous for many not-quite-ANSI C
        !            95: #   programs that call things like printf in asynchronous signal handlers.
        !            96: #   This is on by default.  Turning it off has not been extensively tested with
        !            97: #   compilers that reorder stores.  It should have been.
        !            98: # -DNO_EXECUTE_PERMISSION may cause some or all of the heap to not
        !            99: #   have execute permission, i.e. it may be impossible to execute
        !           100: #   code from the heap.  Currently this only affects the incremental
        !           101: #   collector on UNIX machines.  It may greatly improve its performance,
        !           102: #   since this may avoid some expensive cache synchronization.
        !           103: # -DGC_NO_OPERATOR_NEW_ARRAY declares that the C++ compiler does not support
        !           104: #   the  new syntax "operator new[]" for allocating and deleting arrays.
        !           105: #   See gc_cpp.h for details.  No effect on the C part of the collector.
        !           106: #   This is defined implicitly in a few environments.  Must also be defined
        !           107: #   by clients that use gc_cpp.h.
        !           108: # -DREDIRECT_MALLOC=X causes malloc, realloc, and free to be
        !           109: #   defined as aliases for X, GC_realloc, and GC_free, respectively.
        !           110: #   Calloc and strdup are redefined in terms of the new malloc.  X should
        !           111: #   be either GC_malloc or GC_malloc_uncollectable, or
        !           112: #   GC_debug_malloc_replacement.  (The latter invokes GC_debug_malloc
        !           113: #   with dummy source location information, but still results in
        !           114: #   properly remembered call stacks on Linux/X86 and Solaris/SPARC.)
        !           115: #   The former is occasionally useful for working around leaks in code
        !           116: #   you don't want to (or can't) look at.  It may not work for
        !           117: #   existing code, but it often does.  Neither works on all platforms,
        !           118: #   since some ports use malloc or calloc to obtain system memory.
        !           119: #   (Probably works for UNIX, and win32.)  If you build with DBG_HDRS_ALL,
        !           120: #   you should only use GC_debug_malloc_replacement as a malloc
        !           121: #   replacement.
        !           122: # -DREDIRECT_REALLOC=X causes GC_realloc to be redirected to X.
        !           123: #   The canonical use is -DREDIRECT_REALLOC=GC_debug_realloc_replacement,
        !           124: #   together with -DREDIRECT_MALLOC=GC_debug_malloc_replacement to
        !           125: #   generate leak reports with call stacks for both malloc and realloc.
        !           126: # -DIGNORE_FREE turns calls to free into a noop.  Only useful with
        !           127: #   -DREDIRECT_MALLOC.
        !           128: # -DNO_DEBUGGING removes GC_dump and the debugging routines it calls.
        !           129: #   Reduces code size slightly at the expense of debuggability.
        !           130: # -DJAVA_FINALIZATION makes it somewhat safer to finalize objects out of
        !           131: #   order by specifying a nonstandard finalization mark procedure  (see
        !           132: #   finalize.c).  Objects reachable from finalizable objects will be marked
        !           133: #   in a sepearte postpass, and hence their memory won't be reclaimed.
        !           134: #   Not recommended unless you are implementing a language that specifies
        !           135: #   these semantics.  Since 5.0, determines only only the initial value
        !           136: #   of GC_java_finalization variable.
        !           137: # -DFINALIZE_ON_DEMAND causes finalizers to be run only in response
        !           138: #   to explicit GC_invoke_finalizers() calls.
        !           139: #   In 5.0 this became runtime adjustable, and this only determines the
        !           140: #   initial value of GC_finalize_on_demand.
        !           141: # -DATOMIC_UNCOLLECTABLE includes code for GC_malloc_atomic_uncollectable.
        !           142: #   This is useful if either the vendor malloc implementation is poor,
        !           143: #   or if REDIRECT_MALLOC is used.
        !           144: # -DHBLKSIZE=ddd, where ddd is a power of 2 between 512 and 16384, explicitly
        !           145: #   sets the heap block size.  Each heap block is devoted to a single size and
        !           146: #   kind of object.  For the incremental collector it makes sense to match
        !           147: #   the most likely page size.  Otherwise large values result in more
        !           148: #   fragmentation, but generally better performance for large heaps.
        !           149: # -DUSE_MMAP use MMAP instead of sbrk to get new memory.
        !           150: #   Works for Solaris and Irix.
        !           151: # -DUSE_MUNMAP causes memory to be returned to the OS under the right
        !           152: #   circumstances.  This currently disables VM-based incremental collection.
        !           153: #   This is currently experimental, and works only under some Unix,
        !           154: #   Linux and Windows versions.
        !           155: # -DMMAP_STACKS (for Solaris threads) Use mmap from /dev/zero rather than
        !           156: #   GC_scratch_alloc() to get stack memory.
        !           157: # -DPRINT_BLACK_LIST Whenever a black list entry is added, i.e. whenever
        !           158: #   the garbage collector detects a value that looks almost, but not quite,
        !           159: #   like a pointer, print both the address containing the value, and the
        !           160: #   value of the near-bogus-pointer.  Can be used to identifiy regions of
        !           161: #   memory that are likely to contribute misidentified pointers.
        !           162: # -DKEEP_BACK_PTRS Add code to save back pointers in debugging headers
        !           163: #   for objects allocated with the debugging allocator.  If all objects
        !           164: #   through GC_MALLOC with GC_DEBUG defined, this allows the client
        !           165: #   to determine how particular or randomly chosen objects are reachable
        !           166: #   for debugging/profiling purposes.  The gc_backptr.h interface is
        !           167: #   implemented only if this is defined.
        !           168: # -DGC_ASSERTIONS Enable some internal GC assertion checking.  Currently
        !           169: #   this facility is only used in a few places.  It is intended primarily
        !           170: #   for debugging of the garbage collector itself, but could also
        !           171: # -DDBG_HDRS_ALL Make sure that all objects have debug headers.  Increases
        !           172: #   the reliability (from 99.9999% to 100%) of some of the debugging
        !           173: #   code (especially KEEP_BACK_PTRS).  Makes -DSHORT_DBG_HDRS possible.
        !           174: #   Assumes that all client allocation is done through debugging
        !           175: #   allocators.
        !           176: # -DSHORT_DBG_HDRS Assume that all objects have debug headers.  Shorten
        !           177: #   the headers to minimize object size, at the expense of checking for
        !           178: #   writes past the end of an object.  This is intended for environments
        !           179: #   in which most client code is written in a "safe" language, such as
        !           180: #   Scheme or Java.  Assumes that all client allocation is done using
        !           181: #   the GC_debug_ functions, or through the macros that expand to these,
        !           182: #   or by redirecting malloc to GC_debug_malloc_replacement.
        !           183: #   (Also eliminates the field for the requested object size.)
        !           184: #   occasionally be useful for debugging of client code.  Slows down the
        !           185: #   collector somewhat, but not drastically.
        !           186: # -DSAVE_CALL_COUNT=<n> Set the number of call frames saved with objects
        !           187: #   allocated through the debugging interface.  Affects the amount of
        !           188: #   information generated in leak reports.  Only matters on platforms
        !           189: #   on which we can quickly generate call stacks, currently Linux/(X86 & SPARC)
        !           190: #   and Solaris/SPARC and platforms that provide execinfo.h.
        !           191: #   Default is zero.  On X86, client
        !           192: #   code should NOT be compiled with -fomit-frame-pointer.
        !           193: # -DSAVE_CALL_NARGS=<n> Set the number of functions arguments to be
        !           194: #   saved with each call frame.  Default is zero.  Ignored if we
        !           195: #   don't know how to retrieve arguments on the platform.
        !           196: # -DCHECKSUMS reports on erroneously clear dirty bits, and unexpectedly
        !           197: #   altered stubborn objects, at substantial performance cost.
        !           198: #   Use only for debugging of the incremental collector.
        !           199: # -DGC_GCJ_SUPPORT includes support for gcj (and possibly other systems
        !           200: #   that include a pointer to a type descriptor in each allocated object).
        !           201: #   Building this way requires an ANSI C compiler.
        !           202: # -DUSE_I686_PREFETCH causes the collector to issue Pentium III style
        !           203: #   prefetch instructions.  No effect except on X86 Linux platforms.
        !           204: #   Assumes a very recent gcc-compatible compiler and assembler.
        !           205: #   (Gas prefetcht0 support was added around May 1999.)
        !           206: #   Empirically the code appears to still run correctly on Pentium II
        !           207: #   processors, though with no performance benefit.  May not run on other
        !           208: #   X86 processors?  In some cases this improves performance by
        !           209: #   15% or so.
        !           210: # -DUSE_3DNOW_PREFETCH causes the collector to issue AMD 3DNow style
        !           211: #   prefetch instructions.  Same restrictions as USE_I686_PREFETCH.
        !           212: #   Minimally tested.  Didn't appear to be an obvious win on a K6-2/500.
        !           213: # -DGC_USE_LD_WRAP in combination with the old flags listed in README.linux
        !           214: #   causes the collector some system and pthread calls in a more transparent
        !           215: #   fashion than the usual macro-based approach.  Requires GNU ld, and
        !           216: #   currently probably works only with Linux.
        !           217: # -DTHREAD_LOCAL_ALLOC defines GC_local_malloc(), GC_local_malloc_atomic()
        !           218: #   and GC_local_gcj_malloc().  Needed for gc_gcj.h interface.  These allocate
        !           219: #   in a way that usually does not involve acquisition of a global lock.
        !           220: #   Currently requires -DGC_LINUX_THREADS, but should be easy to port to
        !           221: #   other pthreads environments.  Recommended for multiprocessors.
        !           222: # -DPARALLEL_MARK allows the marker to run in multiple threads.  Recommended
        !           223: #   for multiprocessors.  Currently requires Linux on X86 or IA64, though
        !           224: #   support for other Posix platforms should be fairly easy to add,
        !           225: #   if the thread implementation is otherwise supported.
        !           226: # -DNO_GETENV prevents the collector from looking at environment variables.
        !           227: #   These may otherwise alter its configuration, or turn off GC altogether.
        !           228: #   I don't know of a reason to disable this, except possibly if the
        !           229: #   resulting process runs as a privileged user?
        !           230: # -DUSE_GLOBAL_ALLOC.  Win32 only.  Use GlobalAlloc instead of
        !           231: #   VirtualAlloc to allocate the heap.  May be needed to work around
        !           232: #   a Windows NT/2000 issue.  Incompatible with USE_MUNMAP.
        !           233: #   See README.win32 for details.
        !           234: # -DMAKE_BACK_GRAPH. Enable GC_PRINT_BACK_HEIGHT environment variable.
        !           235: #   See README.environment for details.  Experimental. Limited platform
        !           236: #   support.  Implies DBG_HDRS_ALL.  All allocation should be done using
        !           237: #   the debug interface.
        !           238: # -DSTUBBORN_ALLOC allows allocation of "hard to change" objects, and thus
        !           239: #   makes incremental collection easier.  Was enabled by default until 6.0.
        !           240: #   Rarely used, to my knowledge.
        !           241: # -DHANDLE_FORK attempts to make GC_malloc() work in a child process fork()ed
        !           242: #   from a multithreaded parent.  Currently only supported by linux_threads.c.
        !           243: #   (Similar code should work on Solaris or Irix, but it hasn't been tried.)
        !           244: #
        !           245:
        !           246: CXXFLAGS= $(CFLAGS)
        !           247: AR= ar
        !           248: RANLIB= ranlib
        !           249:
        !           250:
        !           251: 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 gcj_mlc.o specific.o gc_dlopen.o backgraph.o
        !           252:
        !           253: 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 gcj_mlc.c specific.c gc_dlopen.c backgraph.c
        !           254:
        !           255: CORD_SRCS=  cord/cordbscs.c cord/cordxtra.c cord/cordprnt.c cord/de.c cord/cordtest.c include/cord.h include/ec.h include/private/cord_pos.h cord/de_win.c cord/de_win.h cord/de_cmds.h cord/de_win.ICO cord/de_win.RC
        !           256:
        !           257: CORD_OBJS=  cord/cordbscs.o cord/cordxtra.o cord/cordprnt.o
        !           258:
        !           259: SRCS= $(CSRCS) mips_sgi_mach_dep.S rs6000_mach_dep.s alpha_mach_dep.S \
        !           260:     sparc_mach_dep.S include/gc.h include/gc_typed.h \
        !           261:     include/private/gc_hdrs.h include/private/gc_priv.h \
        !           262:     include/private/gcconfig.h include/private/gc_pmark.h \
        !           263:     include/gc_inl.h include/gc_inline.h include/gc_mark.h \
        !           264:     threadlibs.c if_mach.c if_not_there.c gc_cpp.cc include/gc_cpp.h \
        !           265:     gcname.c include/weakpointer.h include/private/gc_locks.h \
        !           266:     gcc_support.c mips_ultrix_mach_dep.s include/gc_alloc.h \
        !           267:     include/new_gc_alloc.h include/gc_allocator.h \
        !           268:     include/javaxfc.h sparc_sunos4_mach_dep.s sparc_netbsd_mach_dep.s \
        !           269:     include/private/solaris_threads.h include/gc_backptr.h \
        !           270:     hpux_test_and_clear.s include/gc_gcj.h \
        !           271:     include/gc_local_alloc.h include/private/dbg_mlc.h \
        !           272:     include/private/specific.h powerpc_macosx_mach_dep.s \
        !           273:     include/leak_detector.h include/gc_amiga_redirects.h \
        !           274:     include/gc_pthread_redirects.h ia64_save_regs_in_stack.s \
        !           275:     $(CORD_SRCS)
        !           276:
        !           277: DOC_FILES= README.QUICK doc/README.Mac doc/README.MacOSX doc/README.OS2 \
        !           278:        doc/README.amiga doc/README.cords doc/debugging.html \
        !           279:        doc/README.dj doc/README.hp doc/README.linux doc/README.rs6000 \
        !           280:        doc/README.sgi doc/README.solaris2 doc/README.uts \
        !           281:        doc/README.win32 doc/barrett_diagram doc/README \
        !           282:         doc/README.contributors doc/README.changes doc/gc.man \
        !           283:        doc/README.environment doc/tree.html doc/gcdescr.html \
        !           284:        doc/README.autoconf doc/README.macros doc/README.ews4800 \
        !           285:        doc/README.DGUX386 doc/README.arm.cross
        !           286:
        !           287: TESTS= tests/test.c tests/test_cpp.cc tests/trace_test.c \
        !           288:        tests/leak_test.c tests/thread_leak_test.c
        !           289:
        !           290: GNU_BUILD_FILES= configure.in Makefile.am configure acinclude.m4 \
        !           291:                 libtool.m4 install-sh configure.host Makefile.in \
        !           292:                 ltconfig aclocal.m4 config.sub config.guess \
        !           293:                 ltmain.sh mkinstalldirs depcomp missing
        !           294:
        !           295: OTHER_MAKEFILES= OS2_MAKEFILE NT_MAKEFILE NT_THREADS_MAKEFILE gc.mak \
        !           296:                 BCC_MAKEFILE EMX_MAKEFILE WCC_MAKEFILE Makefile.dj \
        !           297:                 PCR-Makefile SMakefile.amiga Makefile.DLLs \
        !           298:                 digimars.mak Makefile.direct
        !           299: #      Makefile and Makefile.direct are copies of each other.
        !           300:
        !           301: OTHER_FILES= Makefile setjmp_t.c callprocs pc_excludes \
        !           302:            MacProjects.sit.hqx MacOS.c \
        !           303:            Mac_files/datastart.c Mac_files/dataend.c \
        !           304:            Mac_files/MacOS_config.h Mac_files/MacOS_Test_config.h \
        !           305:            add_gc_prefix.c gc_cpp.cpp win32_threads.c \
        !           306:           version.h AmigaOS.c \
        !           307:           $(TESTS) $(GNU_BUILD_FILES) $(OTHER_MAKEFILES)
        !           308:
        !           309: CORD_INCLUDE_FILES= $(srcdir)/include/gc.h $(srcdir)/include/cord.h \
        !           310:        $(srcdir)/include/ec.h $(srcdir)/include/private/cord_pos.h
        !           311:
        !           312: UTILS= if_mach if_not_there threadlibs
        !           313:
        !           314: # Libraries needed for curses applications.  Only needed for de.
        !           315: CURSES= -lcurses -ltermlib
        !           316:
        !           317: # The following is irrelevant on most systems.  But a few
        !           318: # versions of make otherwise fork the shell specified in
        !           319: # the SHELL environment variable.
        !           320: SHELL= /bin/sh
        !           321:
        !           322: SPECIALCFLAGS = -I$(srcdir)/include
        !           323: # Alternative flags to the C compiler for mach_dep.c.
        !           324: # Mach_dep.c often doesn't like optimization, and it's
        !           325: # not time-critical anyway.
        !           326: # Set SPECIALCFLAGS to -q nodirect_code on Encore.
        !           327:
        !           328: all: gc.a gctest
        !           329:
        !           330: BSD-pkg-all: bsd-libgc.a
        !           331:
        !           332: bsd-libgc.a:
        !           333:        $(MAKE) CFLAGS="$(CFLAGS)" clean c++-t
        !           334:        mv gc.a bsd-libgc.a
        !           335:
        !           336: BSD-pkg-install: BSD-pkg-all
        !           337:        ${CP} bsd-libgc.a libgc.a
        !           338:        ${INSTALL_DATA} libgc.a ${PREFIX}/lib
        !           339:        ${INSTALL_DATA} gc.h gc_cpp.h ${PREFIX}/include
        !           340:
        !           341: pcr: PCR-Makefile include/private/gc_private.h include/private/gc_hdrs.h \
        !           342: include/private/gc_locks.h include/gc.h include/private/gcconfig.h \
        !           343: mach_dep.o $(SRCS)
        !           344:        $(MAKE) -f PCR-Makefile depend
        !           345:        $(MAKE) -f PCR-Makefile
        !           346:
        !           347: $(OBJS) tests/test.o dyn_load.o dyn_load_sunos53.o: \
        !           348:     $(srcdir)/include/private/gc_priv.h \
        !           349:     $(srcdir)/include/private/gc_hdrs.h $(srcdir)/include/private/gc_locks.h \
        !           350:     $(srcdir)/include/gc.h \
        !           351:     $(srcdir)/include/private/gcconfig.h $(srcdir)/include/gc_typed.h \
        !           352:     Makefile
        !           353: # The dependency on Makefile is needed.  Changing
        !           354: # options such as -DSILENT affects the size of GC_arrays,
        !           355: # invalidating all .o files that rely on gc_priv.h
        !           356:
        !           357: mark.o typd_mlc.o finalize.o ptr_chck.o: $(srcdir)/include/gc_mark.h $(srcdir)/include/private/gc_pmark.h
        !           358:
        !           359: specific.o linux_threads.o: $(srcdir)/include/private/specific.h
        !           360:
        !           361: solaris_threads.o solaris_pthreads.o: $(srcdir)/include/private/solaris_threads.h
        !           362:
        !           363: dbg_mlc.o gcj_mlc.o: $(srcdir)/include/private/dbg_mlc.h
        !           364:
        !           365: tests/test.o: tests $(srcdir)/tests/test.c
        !           366:        $(CC) $(CFLAGS) -c $(srcdir)/tests/test.c
        !           367:        mv test.o tests/test.o
        !           368:
        !           369: tests:
        !           370:        mkdir tests
        !           371:
        !           372: base_lib gc.a: $(OBJS) dyn_load.o $(UTILS)
        !           373:        echo > base_lib
        !           374:        rm -f dont_ar_1
        !           375:        ./if_mach SPARC SUNOS5 touch dont_ar_1
        !           376:        ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(OBJS) dyn_load.o
        !           377:        ./if_mach M68K AMIGA touch dont_ar_1
        !           378:        ./if_mach M68K AMIGA $(AR) -vrus gc.a $(OBJS) dyn_load.o
        !           379:        ./if_not_there dont_ar_1 $(AR) ru gc.a $(OBJS) dyn_load.o
        !           380:        ./if_not_there dont_ar_1 $(RANLIB) gc.a || cat /dev/null
        !           381: #      ignore ranlib failure; that usually means it doesn't exist, and isn't needed
        !           382:
        !           383: cords: $(CORD_OBJS) cord/cordtest $(UTILS)
        !           384:        rm -f dont_ar_3
        !           385:        ./if_mach SPARC SUNOS5 touch dont_ar_3
        !           386:        ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(CORD_OBJS)
        !           387:        ./if_mach M68K AMIGA touch dont_ar_3
        !           388:        ./if_mach M68K AMIGA $(AR) -vrus gc.a $(CORD_OBJS)
        !           389:        ./if_not_there dont_ar_3 $(AR) ru gc.a $(CORD_OBJS)
        !           390:        ./if_not_there dont_ar_3 $(RANLIB) gc.a || cat /dev/null
        !           391:
        !           392: gc_cpp.o: $(srcdir)/gc_cpp.cc $(srcdir)/include/gc_cpp.h $(srcdir)/include/gc.h Makefile
        !           393:        $(CXX) -c $(CXXFLAGS) $(srcdir)/gc_cpp.cc
        !           394:
        !           395: test_cpp: $(srcdir)/tests/test_cpp.cc $(srcdir)/include/gc_cpp.h gc_cpp.o $(srcdir)/include/gc.h \
        !           396: base_lib $(UTILS)
        !           397:        rm -f test_cpp
        !           398:        ./if_mach HP_PA HPUX $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/tests/test_cpp.cc gc_cpp.o gc.a -ldld `./threadlibs`
        !           399:        ./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/tests/test_cpp.cc gc_cpp.o gc.a `./threadlibs`
        !           400:
        !           401: c++-t: c++
        !           402:        ./test_cpp 1
        !           403:
        !           404: c++-nt: c++
        !           405:        @echo "Use ./test_cpp 1 to test the leak library"
        !           406:
        !           407: c++: gc_cpp.o $(srcdir)/include/gc_cpp.h test_cpp
        !           408:        rm -f dont_ar_4
        !           409:        ./if_mach SPARC SUNOS5 touch dont_ar_4
        !           410:        ./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
        !           411:        ./if_mach M68K AMIGA touch dont_ar_4
        !           412:        ./if_mach M68K AMIGA $(AR) -vrus gc.a gc_cpp.o
        !           413:        ./if_not_there dont_ar_4 $(AR) ru gc.a gc_cpp.o
        !           414:        ./if_not_there dont_ar_4 $(RANLIB) gc.a || cat /dev/null
        !           415:        ./test_cpp 1
        !           416:        echo > c++
        !           417:
        !           418: dyn_load_sunos53.o: dyn_load.c
        !           419:        $(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
        !           420:
        !           421: # SunOS5 shared library version of the collector
        !           422: sunos5gc.so: $(OBJS) dyn_load_sunos53.o
        !           423:        $(CC) -G -o sunos5gc.so $(OBJS) dyn_load_sunos53.o -ldl
        !           424:        ln sunos5gc.so libgc.so
        !           425:
        !           426: # Alpha/OSF shared library version of the collector
        !           427: libalphagc.so: $(OBJS)
        !           428:        ld -shared -o libalphagc.so $(OBJS) dyn_load.o -lc
        !           429:        ln libalphagc.so libgc.so
        !           430:
        !           431: # IRIX shared library version of the collector
        !           432: libirixgc.so: $(OBJS) dyn_load.o
        !           433:        ld -shared $(ABI_FLAG) -o libirixgc.so $(OBJS) dyn_load.o -lc
        !           434:        ln libirixgc.so libgc.so
        !           435:
        !           436: # Linux shared library version of the collector
        !           437: liblinuxgc.so: $(OBJS) dyn_load.o
        !           438:        gcc -shared -o liblinuxgc.so $(OBJS) dyn_load.o
        !           439:        ln liblinuxgc.so libgc.so
        !           440:
        !           441: # Alternative Linux rule.  This is preferable, but is likely to break the
        !           442: # Makefile for some non-linux platforms.
        !           443: # LIBOBJS= $(patsubst %.o, %.lo, $(OBJS))
        !           444: #
        !           445: #.SUFFIXES: .lo $(SUFFIXES)
        !           446: #
        !           447: #.c.lo:
        !           448: #      $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c $< -o $@
        !           449: #
        !           450: # liblinuxgc.so: $(LIBOBJS) dyn_load.lo
        !           451: #      gcc -shared -Wl,-soname=libgc.so.0 -o libgc.so.0 $(LIBOBJS) dyn_load.lo
        !           452: #      touch liblinuxgc.so
        !           453:
        !           454: mach_dep.o: $(srcdir)/mach_dep.c $(srcdir)/mips_sgi_mach_dep.S \
        !           455:            $(srcdir)/mips_ultrix_mach_dep.s \
        !           456:             $(srcdir)/rs6000_mach_dep.s $(srcdir)/powerpc_macosx_mach_dep.s \
        !           457:            $(srcdir)/sparc_mach_dep.S $(srcdir)/sparc_sunos4_mach_dep.s \
        !           458:            $(srcdir)/ia64_save_regs_in_stack.s \
        !           459:            $(srcdir)/sparc_netbsd_mach_dep.s $(UTILS)
        !           460:        rm -f mach_dep.o
        !           461:        ./if_mach MIPS IRIX5 $(AS) -o mach_dep.o $(srcdir)/mips_sgi_mach_dep.S
        !           462:        ./if_mach MIPS RISCOS $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
        !           463:        ./if_mach MIPS ULTRIX $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
        !           464:        ./if_mach POWERPC MACOSX $(AS) -o mach_dep.o $(srcdir)/powerpc_macosx_mach_dep.s
        !           465:        ./if_mach ALPHA "" $(CC) -c -o mach_dep.o $(srcdir)/alpha_mach_dep.S
        !           466:        ./if_mach SPARC SUNOS5 $(CC) -c -o mach_dep.o $(srcdir)/sparc_mach_dep.S
        !           467:        ./if_mach SPARC SUNOS4 $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
        !           468:        ./if_mach SPARC OPENBSD $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
        !           469:        ./if_mach SPARC NETBSD $(AS) -o mach_dep.o $(srcdir)/sparc_netbsd_mach_dep.s
        !           470:        ./if_mach IA64 "" as $(AS_ABI_FLAG) -o ia64_save_regs_in_stack.o $(srcdir)/ia64_save_regs_in_stack.s
        !           471:        ./if_mach IA64 "" $(CC) -c -o mach_dep1.o $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
        !           472:        ./if_mach IA64 "" ld -r -o mach_dep.o mach_dep1.o ia64_save_regs_in_stack.o
        !           473:        ./if_not_there mach_dep.o $(CC) -c $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
        !           474:
        !           475: mark_rts.o: $(srcdir)/mark_rts.c $(UTILS)
        !           476:        rm -f mark_rts.o
        !           477:        -./if_mach ALPHA OSF1 $(CC) -c $(CFLAGS) -Wo,-notail $(srcdir)/mark_rts.c
        !           478:        ./if_not_there mark_rts.o $(CC) -c $(CFLAGS) $(srcdir)/mark_rts.c
        !           479: #      Work-around for DEC optimizer tail recursion elimination bug.
        !           480: #  The ALPHA-specific line should be removed if gcc is used.
        !           481:
        !           482: alloc.o: version.h
        !           483:
        !           484: cord:
        !           485:        mkdir cord
        !           486:
        !           487: cord/cordbscs.o: cord $(srcdir)/cord/cordbscs.c $(CORD_INCLUDE_FILES)
        !           488:        $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordbscs.c
        !           489:        mv cordbscs.o cord/cordbscs.o
        !           490: #  not all compilers understand -o filename
        !           491:
        !           492: cord/cordxtra.o: cord $(srcdir)/cord/cordxtra.c $(CORD_INCLUDE_FILES)
        !           493:        $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordxtra.c
        !           494:        mv cordxtra.o cord/cordxtra.o
        !           495:
        !           496: cord/cordprnt.o: cord $(srcdir)/cord/cordprnt.c $(CORD_INCLUDE_FILES)
        !           497:        $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordprnt.c
        !           498:        mv cordprnt.o cord/cordprnt.o
        !           499:
        !           500: cord/cordtest: $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a $(UTILS)
        !           501:        rm -f cord/cordtest
        !           502:        ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -lucb
        !           503:        ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -ldld `./threadlibs`
        !           504:        ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
        !           505:        ./if_not_there cord/cordtest $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
        !           506:
        !           507: cord/de: $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(UTILS)
        !           508:        rm -f cord/de
        !           509:        ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -lucb `./threadlibs`
        !           510:        ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -ldld `./threadlibs`
        !           511:        ./if_mach RS6000 "" $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
        !           512:        ./if_mach POWERPC MACOSX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a
        !           513:        ./if_mach I386 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
        !           514:        ./if_mach ALPHA LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
        !           515:        ./if_mach IA64 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
        !           516:        ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
        !           517:        ./if_not_there cord/de $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) `./threadlibs`
        !           518:
        !           519: if_mach: $(srcdir)/if_mach.c $(srcdir)/include/private/gcconfig.h
        !           520:        $(HOSTCC) $(HOSTCFLAGS) -o if_mach $(srcdir)/if_mach.c
        !           521:
        !           522: threadlibs: $(srcdir)/threadlibs.c $(srcdir)/include/private/gcconfig.h Makefile
        !           523:        $(HOSTCC) $(HOSTCFLAGS) -o threadlibs $(srcdir)/threadlibs.c
        !           524:
        !           525: if_not_there: $(srcdir)/if_not_there.c
        !           526:        $(HOSTCC) $(HOSTCFLAGS) -o if_not_there $(srcdir)/if_not_there.c
        !           527:
        !           528: clean:
        !           529:        rm -f gc.a *.o *.exe tests/*.o gctest gctest_dyn_link test_cpp \
        !           530:              setjmp_test  mon.out gmon.out a.out core if_not_there if_mach \
        !           531:              threadlibs $(CORD_OBJS) cord/cordtest cord/de
        !           532:        -rm -f *~
        !           533:
        !           534: gctest: tests/test.o gc.a $(UTILS)
        !           535:        rm -f gctest
        !           536:        ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o gctest  tests/test.o gc.a -lucb
        !           537:        ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o gctest  tests/test.o gc.a -ldld `./threadlibs`
        !           538:        ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o gctest  tests/test.o gc.a `./threadlibs`
        !           539:        ./if_not_there gctest $(CC) $(CFLAGS) -o gctest tests/test.o gc.a `./threadlibs`
        !           540:
        !           541: # If an optimized setjmp_test generates a segmentation fault,
        !           542: # odds are your compiler is broken.  Gctest may still work.
        !           543: # Try compiling setjmp_t.c unoptimized.
        !           544: setjmp_test: $(srcdir)/setjmp_t.c $(srcdir)/include/gc.h $(UTILS)
        !           545:        $(CC) $(CFLAGS) -o setjmp_test $(srcdir)/setjmp_t.c
        !           546:
        !           547: test:  KandRtest cord/cordtest
        !           548:        cord/cordtest
        !           549:
        !           550: # Those tests that work even with a K&R C compiler:
        !           551: KandRtest: setjmp_test gctest
        !           552:        ./setjmp_test
        !           553:        ./gctest
        !           554:
        !           555: add_gc_prefix: $(srcdir)/add_gc_prefix.c $(srcdir)/version.h
        !           556:        $(CC) -o add_gc_prefix $(srcdir)/add_gc_prefix.c
        !           557:
        !           558: gcname: $(srcdir)/gcname.c $(srcdir)/version.h
        !           559:        $(CC) -o gcname $(srcdir)/gcname.c
        !           560:
        !           561: gc.tar: $(SRCS) $(DOC_FILES) $(OTHER_FILES) add_gc_prefix gcname
        !           562:        cp Makefile Makefile.old
        !           563:        cp Makefile.direct Makefile
        !           564:        rm -f `./gcname`
        !           565:        ln -s . `./gcname`
        !           566:        ./add_gc_prefix $(SRCS) $(DOC_FILES) $(OTHER_FILES) > /tmp/gc.tar-files
        !           567:        tar cvfh gc.tar `cat /tmp/gc.tar-files`
        !           568:        cp gc.tar `./gcname`.tar
        !           569:        gzip `./gcname`.tar
        !           570:        rm `./gcname`
        !           571:
        !           572: pc_gc.tar: $(SRCS) $(OTHER_FILES)
        !           573:        tar cvfX pc_gc.tar pc_excludes $(SRCS) $(OTHER_FILES)
        !           574:
        !           575: floppy: pc_gc.tar
        !           576:        -mmd a:/cord
        !           577:        -mmd a:/cord/private
        !           578:        -mmd a:/include
        !           579:        -mmd a:/include/private
        !           580:        mkdir /tmp/pc_gc
        !           581:        cat pc_gc.tar | (cd /tmp/pc_gc; tar xvf -)
        !           582:        -mcopy -tmn /tmp/pc_gc/* a:
        !           583:        -mcopy -tmn /tmp/pc_gc/cord/* a:/cord
        !           584:        -mcopy -mn /tmp/pc_gc/cord/de_win.ICO a:/cord
        !           585:        -mcopy -tmn /tmp/pc_gc/cord/private/* a:/cord/private
        !           586:        -mcopy -tmn /tmp/pc_gc/include/* a:/include
        !           587:        -mcopy -tmn /tmp/pc_gc/include/private/* a:/include/private
        !           588:        rm -r /tmp/pc_gc
        !           589:
        !           590: gc.tar.Z: gc.tar
        !           591:        compress gc.tar
        !           592:
        !           593: gc.tar.gz: gc.tar
        !           594:        gzip gc.tar
        !           595:
        !           596: lint: $(CSRCS) tests/test.c
        !           597:        lint -DLINT $(CSRCS) tests/test.c | egrep -v "possible pointer alignment problem|abort|exit|sbrk|mprotect|syscall|change in ANSI|improper alignment"
        !           598:
        !           599: # BTL: added to test shared library version of collector.
        !           600: # Currently works only under SunOS5.  Requires GC_INIT call from statically
        !           601: # loaded client code.
        !           602: ABSDIR = `pwd`
        !           603: gctest_dyn_link: tests/test.o libgc.so
        !           604:        $(CC) -L$(ABSDIR) -R$(ABSDIR) -o gctest_dyn_link tests/test.o -lgc -ldl -lthread
        !           605:
        !           606: gctest_irix_dyn_link: tests/test.o libirixgc.so
        !           607:        $(CC) -L$(ABSDIR) -o gctest_irix_dyn_link tests/test.o -lirixgc
        !           608:
        !           609: # The following appear to be dead, especially since libgc_globals.h
        !           610: # is apparently lost.
        !           611: test_dll.o: tests/test.c libgc_globals.h
        !           612:        $(CC) $(CFLAGS) -DGC_USE_DLL -c tests/test.c -o test_dll.o
        !           613:
        !           614: test_dll: test_dll.o libgc_dll.a libgc.dll
        !           615:        $(CC) test_dll.o -L$(ABSDIR) -lgc_dll -o test_dll
        !           616:
        !           617: SYM_PREFIX-libgc=GC
        !           618:
        !           619: # Uncomment the following line to build a GNU win32 DLL
        !           620: # include Makefile.DLLs
        !           621:
        !           622: reserved_namespace: $(SRCS)
        !           623:        for file in $(SRCS) tests/test.c tests/test_cpp.cc; do \
        !           624:                sed s/GC_/_GC_/g < $$file > tmp; \
        !           625:                cp tmp $$file; \
        !           626:                done
        !           627:
        !           628: user_namespace: $(SRCS)
        !           629:        for file in $(SRCS) tests/test.c tests/test_cpp.cc; do \
        !           630:                sed s/_GC_/GC_/g < $$file > tmp; \
        !           631:                cp tmp $$file; \
        !           632:                done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>