Annotation of OpenXM_contrib2/asir2000/gc/Imakefile, Revision 1.6
1.6 ! noro 1: /*
! 2: * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
! 3: * All rights reserved.
! 4: *
! 5: * $OpenXM: OpenXM_contrib2/asir2000/gc/Imakefile,v 1.5 2000/07/13 05:09:01 noro Exp $
! 6: */
1.1 noro 7: #include "../include/Risa.tmpl"
8:
1.5 noro 9: CFLAGS= $(DEFINES) $(CDEBUGFLAGS) -DSILENT -DLARGE_CONFIG -DALL_INTERIOR_POINTERS -DHEAP_START_ADDR=0x$(HEAP_START_ADDR)
1.1 noro 10:
11: 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 mallocx.o stubborn.o solaris_threads.o typd_mlc.o ptr_chck.o dyn_load.o gc_risa.o
12:
13: SRCS= alloc.c reclaim.c allchblk.c misc.c mach_dep.c os_dep.c mark_rts.c headers.c mark.c obj_map.c blacklst.c finalize.c new_hblk.c dbg_mlc.c malloc.c mallocx.c stubborn.c solaris_threads.c typd_mlc.c ptr_chck.c dyn_load.c gc_risa.c
14:
1.2 noro 15: NormalLibraryTarget(asir-gc,$(OBJS))
1.1 noro 16: DependTarget()
17:
18: #if defined(AlphaArchitecture)
19: #if defined(LinuxArchitecture)
20: mach_dep.o: alpha_linux_mach_dep.s
21: as -o mach_dep.o alpha_linux_mach_dep.s
22: #else
23: mach_dep.o: alpha_mach_dep.s
24: as -o mach_dep.o alpha_mach_dep.s
25: #endif
26: mark_roots.o:
27: $(CC) -c $(CFLAGS) -Wo,-notail mark_roots.c
28: #else
29: #if defined(mips) || defined(MipsArchitecture)
30: mach_dep.o: mips_mach_dep.s
31: as -n32 -mips3 -o mach_dep.o mips_mach_dep.s
32: #else
33: #if defined(_IBMR2)
34: mach_dep.o: rs6000_mach_dep.s
35: as -o mach_dep.o rs6000_mach_dep.s
36: #else
37: mach_dep.o: mach_dep.c
38: $(CC) -c mach_dep.c
39: #endif
40: #endif
41: #endif
42:
43: os_dep.o: $(TOP)/include/Risa.tmpl
1.3 noro 44:
45: install-include::
46: MakeDir($(GC_INCDIR))
47: -$(CP) gc*.h $(GC_INCDIR)
48:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>