1 ## Process this file with automake to produce Makefile.in.
3 ## FIXME: `make dist' in this directory will not currently work. Many
4 ## files that should be in the distribution are not mentioned in this
7 AUTOMAKE_OPTIONS = cygnus
11 # Multilib support variables.
19 ## Install a library built with a cross compiler in tooldir, not
22 toolexeclibdir = $(libdir)$(MULTISUBDIR)
24 toolexecdir = $(exec_prefix)/$(target_alias)
25 toolexeclibdir = $(toolexecdir)/lib$(MULTISUBDIR)
28 toolexeclib_LTLIBRARIES = $(target_all)
29 EXTRA_LTLIBRARIES = libgcjgc.la
30 libgcjgc_la_SOURCES = allchblk.c alloc.c blacklst.c checksums.c dbg_mlc.c \
31 dyn_load.c finalize.c gc_dlopen.c gcj_mlc.c headers.c irix_threads.c \
32 linux_threads.c malloc.c mallocx.c mark.c mark_rts.c misc.c new_hblk.c \
33 obj_map.c os_dep.c pcr_interface.c ptr_chck.c real_malloc.c reclaim.c \
34 solaris_pthreads.c solaris_threads.c specific.c stubborn.c typd_mlc.c
36 # Include THREADLIBS here to ensure that the correct versions of
37 # linuxthread semaphore functions get linked:
38 libgcjgc_la_LIBADD = @addobjs@ $(THREADLIBS)
39 libgcjgc_la_DEPENDENCIES = @addobjs@
40 libgcjgc_la_LDFLAGS = -version-info 1:1:0 -rpath $(toolexeclibdir)
42 EXTRA_libgcjgc_la_SOURCES = alpha_mach_dep.s \
43 mips_sgi_mach_dep.s mips_ultrix_mach_dep.s powerpc_macosx_mach_dep.s \
44 rs6000_mach_dep.s sparc_mach_dep.s sparc_netbsd_mach_dep.s \
45 sparc_sunos4_mach_dep.s ia64_save_regs_in_stack.s
47 AM_CXXFLAGS = @GC_CFLAGS@
48 AM_CFLAGS = @GC_CFLAGS@
50 check_PROGRAMS = gctest
51 # The following hack produces a warning from automake, but we need it in order
52 # to build a file from a subdirectory. FIXME.
54 $(COMPILE) -c $(srcdir)/tests/test.c
55 # Using $< in the above seems to fail with the HP/UX on Itanium make.
57 gctest_OBJECTS = test.o
58 gctest_LDADD = ./libgcjgc.la $(THREADLIBS) $(EXTRA_TEST_LIBS)
59 gctest_LDFLAGS = -shared-libgcc
60 TESTS_ENVIRONMENT = LD_LIBRARY_PATH=../../$(MULTIBUILDTOP)gcc
63 ## FIXME: relies on internal code generated by automake.
64 all_objs = @addobjs@ $(libgcjgc_la_OBJECTS)
65 $(all_objs) : include/private/gcconfig.h include/private/gc_priv.h \
66 include/private/gc_hdrs.h include/gc.h include/gc_gcj.h include/gc_mark.h
68 ## FIXME: we shouldn't have to do this, but automake forces us to.
70 ## We use -Wp,-P to strip #line directives. Irix `as' chokes on
72 $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $<
74 ## We have our own definition of LTCOMPILE because we want to use our
75 ## CFLAGS, not those passed in from the top level make.
76 LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) \
77 $(AM_CPPFLAGS) $(CPPFLAGS) \
78 $(AM_CFLAGS) $(MY_CFLAGS) $(GC_CFLAGS)
79 LINK = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(MY_CFLAGS) $(LDFLAGS) -o $@
81 AM_CFLAGS = @GC_CFLAGS@
83 # Work around what appears to be a GNU make bug handling MAKEFLAGS
84 # values defined in terms of make variables, as is the case for CC and
85 # friends when we are called from the top level Makefile.
87 "AR_FLAGS=$(AR_FLAGS)" \
88 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
90 "CXXFLAGS=$(CXXFLAGS)" \
91 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
92 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
93 "INSTALL=$(INSTALL)" \
94 "INSTALL_DATA=$(INSTALL_DATA)" \
95 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
96 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
97 "LDFLAGS=$(LDFLAGS)" \
98 "LIBCFLAGS=$(LIBCFLAGS)" \
99 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
101 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
102 "PICFLAG=$(PICFLAG)" \
103 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
106 "RUNTEST=$(RUNTEST)" \
107 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
108 "exec_prefix=$(exec_prefix)" \
109 "infodir=$(infodir)" \
112 "tooldir=$(tooldir)" \
118 "LIBCFLAGS=$(LIBCFLAGS)" \
120 "PICFLAG=$(PICFLAG)" \
124 CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host
127 .PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \
128 maintainer-clean-multi
131 install-am: install-multi
132 mostlyclean-am: mostlyclean-multi
133 clean-am: clean-multi
134 distclean-am: distclean-multi
135 maintainer-clean-am: maintainer-clean-multi
138 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do
140 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do
142 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean
144 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean
146 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean
147 maintainer-clean-multi:
148 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean