OSDN Git Service

* langhooks.c (lhd_tree_inlining_add_pending_fn_decls,
[pf3gnuchains/gcc-fork.git] / libjava / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2
3 AUTOMAKE_OPTIONS = foreign subdir-objects
4
5 ACLOCAL_AMFLAGS = -I . -I .. -I ../config
6
7 # May be used by various substitution variables.
8 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
9
10 SUBDIRS = $(DIRLTDL) gcj include classpath
11 if TESTSUBDIR
12 SUBDIRS += testsuite
13 endif
14
15 # write_entries_to_file - writes each entry in a list
16 # to the specified file. Each entry is written individually
17 # to accomodate systems with severe command-line-length
18 # limitations.
19 # Parameters:
20 # $(1): variable containing entries to iterate over
21 # $(2): output file
22 write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) $(foreach object,$(1),$(shell echo $(object) >> $(2)))
23
24 ## ################################################################
25
26 # autoconf2.13's target_alias
27 target_noncanonical = @target_noncanonical@
28
29 # This is required by TL_AC_GXX_INCLUDE_DIR.
30 libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)
31
32 libexecsubdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
33
34 ##
35 ## What gets installed, and where.
36 ##
37
38 toolexeclib_LTLIBRARIES = libgcj.la libgij.la libgcj-tools.la
39 toolexecmainlib_DATA = libgcj.spec
40
41 if USE_LIBGCJ_BC
42 toolexeclib_LTLIBRARIES += libgcj_bc.la
43 endif
44
45 if XLIB_AWT
46 toolexeclib_LTLIBRARIES += lib-gnu-awt-xlib.la
47 endif
48
49 dbexec_LTLIBRARIES = libjvm.la
50
51 pkgconfigdir = $(libdir)/pkgconfig
52
53 jardir = $(datadir)/java
54 jar_DATA = libgcj-$(gcc_version).jar libgcj-tools-$(gcc_version).jar
55 if INSTALL_ECJ_JAR
56 jar_DATA += $(ECJ_BUILD_JAR)
57 endif
58
59 if JAVA_HOME_SET
60 JAVA_HOME_DIR = $(JAVA_HOME)
61 BOOT_CLASS_PATH_DIR = $(JAVA_HOME)/lib/rt.jar
62 else
63 JAVA_HOME_DIR = $(prefix)
64 BOOT_CLASS_PATH_DIR = $(jardir)/libgcj-$(gcc_version).jar
65 endif
66
67 ## Name of the default .db.
68 db_name = classmap.db
69 ## Compiler specific component of the .db file
70 db_pathtail = gcj-$(gcc_version)/$(db_name)
71
72 ## For now, only on native systems.  FIXME.
73 if NATIVE
74 bin_PROGRAMS = jv-convert gij grmic grmiregistry gcj-dbtool \
75         gappletviewer gjarsigner gkeytool gjar gcjh gjavah gnative2ascii \
76         gorbd grmid gserialver gtnameserv gc-analyze
77
78 ## It is convenient to actually build and install the default database
79 ## when gcj-dbtool is available.
80 dbexec_DATA = $(db_name)
81 endif
82
83 bin_SCRIPTS = addr2name.awk
84
85 if BUILD_ECJ1
86 ## We build ecjx and not ecj1 because in one mode, ecjx will not work
87 ## until after 'make install', and we don't want it to be picked up in
88 ## the build tree by gcj via a -B option.
89 libexecsub_PROGRAMS = ecjx
90 endif
91
92 ## ################################################################
93
94 ##
95 ## Compilers and compilation flags.
96 ##
97
98 ## The compiler with whatever flags we want for both -c and -C
99 ## compiles.
100 GCJ_WITH_FLAGS = $(GCJ) --encoding=UTF-8 -Wno-deprecated
101
102 extra_ldflags_libjava = @extra_ldflags_libjava@
103
104 if ANONVERSCRIPT
105 extra_ldflags_libjava += -Wl,--version-script=$(srcdir)/libgcj.ver
106 endif
107
108 GCJLINK = $(LIBTOOL) --tag=GCJ --mode=link $(GCJ) -L$(here) $(JC1FLAGS) \
109           $(LDFLAGS) -o $@
110 GCJ_FOR_ECJX = @GCJ_FOR_ECJX@
111 GCJ_FOR_ECJX_LINK = $(GCJ_FOR_ECJX) -o $@
112 LIBLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXX) -L$(here) $(JC1FLAGS) \
113           $(LDFLAGS) $(extra_ldflags_libjava) -o $@
114
115 GCC_UNWIND_INCLUDE = @GCC_UNWIND_INCLUDE@
116
117 WARNINGS = -Wextra -Wall
118 ## Some systems don't allow `$' in identifiers by default, so we force
119 ## it with -fdollars-in-identifiers.  -Wswitch-enum detects bugs in
120 ## the verifier implementation, and maybe other places.  We need
121 ## _GNU_SOURCE defined for some Linux builds.  It doesn't hurt to
122 ## always define it.  Some systems, including Linux, need
123 ## -D_FILE_OFFSET_BITS=64 to enable > 2GB file support.
124 AM_CXXFLAGS = \
125         -fno-rtti \
126         -fnon-call-exceptions \
127         $(THREADCXXFLAGS) \
128         -fdollars-in-identifiers \
129         -Wswitch-enum \
130         -D_FILE_OFFSET_BITS=64 \
131         @LIBGCJ_CXXFLAGS@ \
132         $(WARNINGS) \
133         -D_GNU_SOURCE \
134         -DPREFIX="\"$(prefix)\"" \
135         -DTOOLEXECLIBDIR="\"$(toolexeclibdir)\"" \
136         -DJAVA_HOME="\"$(JAVA_HOME_DIR)\"" \
137         -DBOOT_CLASS_PATH="\"$(BOOT_CLASS_PATH_DIR)\"" \
138         -DJAVA_EXT_DIRS="\"$(jardir)/ext\"" \
139         -DGCJ_ENDORSED_DIRS="\"$(jardir)/gcj-endorsed\"" \
140         -DGCJ_VERSIONED_LIBDIR="\"$(dbexecdir)\"" \
141         -DPATH_SEPARATOR="\"$(CLASSPATH_SEPARATOR)\"" \
142         -DECJ_JAR_FILE="\"$(ECJ_JAR)\"" \
143         -DLIBGCJ_DEFAULT_DATABASE="\"$(dbexecdir)/$(db_name)\"" \
144         -DLIBGCJ_DEFAULT_DATABASE_PATH_TAIL="\"$(db_pathtail)\""
145
146 AM_GCJFLAGS = \
147         @LIBGCJ_JAVAFLAGS@ \
148         -fclasspath= -fbootclasspath=$(BOOTCLASSPATH) \
149         --encoding=UTF-8 \
150         -Wno-deprecated -fbootstrap-classes
151
152 AM_CFLAGS = @LIBGCJ_CFLAGS@
153 if USING_GCC
154 AM_CFLAGS += $(WARNINGS)
155 endif
156
157 ## Extra CFLAGS used for JNI C sources shared with GNU Classpath.
158 PEDANTIC_CFLAGS = -ansi -pedantic -Wall -Wno-long-long
159
160 JCFLAGS = -g
161 JC1FLAGS = @LIBGCJ_JAVAFLAGS@ $(GCJFLAGS)
162
163 LIBFFIINCS = @LIBFFIINCS@
164
165 AM_CPPFLAGS = -I$(top_srcdir) \
166         -Iinclude -I$(top_srcdir)/include \
167         -I$(top_srcdir)/classpath/include \
168         -Iclasspath/include \
169         -I$(top_srcdir)/classpath/native/fdlibm \
170         $(GCINCS) $(THREADINCS) $(INCLTDL) \
171         $(GCC_UNWIND_INCLUDE) $(ZINCS) $(LIBFFIINCS)
172
173 BOOTCLASSPATH = $(srcdir)/classpath/lib
174
175 ## ################################################################
176
177 ##
178 ## How to build libgcj.a and libgcj.jar
179 ##
180
181 libgij_la_SOURCES = gij.cc
182 libgij_la_DEPENDENCIES = libgcj.la libgcj.spec
183 ## See jv_convert_LDADD.
184 libgij_la_LIBADD = -L$(here)/.libs libgcj.la
185 ## The mysterious backslash in the grep pattern is consumed by make.
186 libgij_la_LDFLAGS = -rpath $(toolexeclibdir) \
187         -version-info `grep -v '^\#' $(srcdir)/libtool-version` $(LIBGCJ_LD_SYMBOLIC)
188
189 libgcj_la_SOURCES = prims.cc jni.cc jvmti.cc exception.cc stacktrace.cc \
190         link.cc defineclass.cc interpret.cc verify.cc \
191         $(nat_source_files)
192
193 ## We need to compile at least the interpreter this way.
194 interpret.lo:  AM_CXXFLAGS += -fwrapv
195
196 if USING_BOEHMGC
197 libgcj_la_SOURCES += boehm.cc
198 endif
199
200 if USING_NOGC
201 libgcj_la_SOURCES += nogc.cc
202 endif
203
204 if USING_POSIX_PLATFORM
205 libgcj_la_SOURCES += posix.cc
206 endif
207
208 if USING_WIN32_PLATFORM
209 libgcj_la_SOURCES += win32.cc
210 endif
211
212 if USING_DARWIN_CRT
213 libgcj_la_SOURCES += darwin.cc
214 endif
215
216 if USING_POSIX_THREADS
217 libgcj_la_SOURCES += posix-threads.cc
218 endif
219
220 if USING_WIN32_THREADS
221 libgcj_la_SOURCES += win32-threads.cc
222 endif
223
224 if USING_NO_THREADS
225 libgcj_la_SOURCES += no-threads.cc
226 endif
227
228 ## Objects from C++ sources in subdirs.
229 nat_files = $(nat_source_files:.cc=.lo)
230 xlib_nat_files = $(xlib_nat_source_files:.cc=.lo)
231
232 # Include THREADLIBS here to ensure that the correct version of
233 # certain linuxthread functions get linked:
234 ## The mysterious backslash in the grep pattern is consumed by make.
235 libgcj_la_LDFLAGS = -rpath $(toolexeclibdir) $(THREADLDFLAGS) $(THREADLIBS) \
236         $(LIBLTDL) $(SYS_ZLIBS) \
237         -version-info `grep -v '^\#' $(srcdir)/libtool-version` \
238         $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS)
239 libgcj_la_LIBADD = \
240         classpath/native/fdlibm/libfdlibm.la \
241         java/lang/Object.lo \
242         java/lang/Class.lo \
243         java/process-$(PLATFORM).lo \
244         $(all_packages_source_files:.list=.lo) \
245         $(bc_objects) \
246         $(propertyo_files) \
247         $(LIBFFI) $(ZLIBS) $(GCLIBS)
248 libgcj_la_DEPENDENCIES = libgcj-$(gcc_version).jar \
249         java/lang/Object.lo \
250         java/lang/Class.lo \
251         java/process-$(PLATFORM).lo \
252         $(all_packages_source_files:.list=.lo) \
253         $(LIBLTDL) $(libgcj_la_LIBADD)
254 if ANONVERSCRIPT
255 libgcj_la_DEPENDENCIES += $(srcdir)/libgcj.ver
256 endif
257 libgcj_la_LINK = $(LIBLINK)
258
259 ## A hack to make sure the various gcj-related macros, like
260 ## LTGCJCOMPILE, are defined by automake.  This is never actually
261 ## compiled.
262 EXTRA_libgcj_la_SOURCES = java/lang/Object.java
263
264 libgcj_tools_la_SOURCES = classpath/tools/tools.zip
265 libgcj_tools_la_GCJFLAGS = $(AM_GCJFLAGS) -findirect-dispatch -fno-indirect-classes  -fsource-filename=$(here)/classpath/tools/all-classes.lst
266 libgcj_tools_la_LDFLAGS = -rpath $(toolexeclibdir) \
267  -version-info `grep -v '^\#' $(srcdir)/libtool-version` \
268  $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS)
269 libgcj_tools_la_DEPENDENCIES = libgcj.la libgcj.spec
270 libgcj_tools_la_LINK = $(LIBLINK)
271
272 ## libjvm.so
273 libjvm_la_SOURCES = jni-libjvm.cc
274 libjvm_la_DEPENDENCIES = libgcj.la libgcj.spec
275 ## See jv_convert_LDADD.
276 libjvm_la_LIBADD = -L$(here)/.libs libgcj.la
277 libjvm_la_LDFLAGS = -avoid-version $(LIBGCJ_LD_SYMBOLIC)
278
279 ## The .db file.  This rule is only used for native builds, so it is
280 ## safe to invoke gcj-dbtool.
281 $(db_name): gcj-dbtool$(EXEEXT)
282 ## In case it exists already.
283         @rm -f $(db_name)
284 ## We don't actually care if it fails -- if it does, just make an
285 ## empty file.  This is simpler than trying to discover when mmap is
286 ## not available.
287         ./gcj-dbtool -n $(db_name) || touch $(db_name)
288
289 lib_gnu_awt_xlib_la_SOURCES = $(xlib_nat_source_files)
290 lib_gnu_awt_xlib_la_LIBADD = gnu/awt/xlib.lo gnu/gcj/xlib.lo
291 lib_gnu_awt_xlib_la_DEPENDENCIES = libgcj-$(gcc_version).jar \
292         libgcj.la libgcj.spec \
293         $(lib_gnu_awt_xlib_la_LIBADD)
294 ## We require libstdc++-v3 to be in the same build tree.
295 lib_gnu_awt_xlib_la_CPPFLAGS = \
296         $(AM_CPPFLAGS) \
297         -I../libstdc++-v3/include \
298         -I../libstdc++-v3/include/$(target_noncanonical) \
299         -I$(srcdir)/../libstdc++-v3/libsupc++
300 ## The mysterious backslash in the grep pattern is consumed by make.
301 lib_gnu_awt_xlib_la_LDFLAGS = ../libstdc++-v3/src/libstdc++.la \
302         @X_PRE_LIBS@ @X_LIBS@ -lX11 @X_EXTRA_LIBS@ \
303         -rpath $(toolexeclibdir) \
304         -version-info `grep -v '^\#' $(srcdir)/libtool-version` $(LIBGCJ_LD_SYMBOLIC)
305 lib_gnu_awt_xlib_la_LINK = $(LIBLINK)
306
307 ## Support for libgcj_bc: dummy shared library.
308 ##
309 ## This lets us have one soname in BC objects and another in C++ ABI objects.
310 libgcj_bc_la_SOURCES = libgcj_bc.c
311 libgcj_bc_la_LDFLAGS = -rpath $(toolexeclibdir) -no-static -version-info 1:0:0 \
312         $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS)
313 libgcj_bc_la_LIBADD = libgcj.la
314 libgcj_bc_la_DEPENDENCIES = libgcj.la
315 libgcj_bc_la_LINK = $(LIBLINK)
316 ## This is specific to Linux/{Free,Net,Open}BSD/Hurd and perhaps few others.
317 ## USE_LIBGCJ_BC shouldn't be set on other targets.
318 libgcj_bc_dummy_LINK = $(CC) -L$(here)/.libs $(CFLAGS) $(LDFLAGS) -shared \
319         -fPIC -nostdlib
320
321 ## This rule creates the libgcj_bc dummy library in the .libs directory, for use
322 ## when testing.
323 libgcj_bc.la: $(libgcj_bc_la_OBJECTS) $(libgcj_bc_la_DEPENDENCIES)
324         $(libgcj_bc_la_LINK) $(am_libgcj_bc_la_rpath) $(libgcj_bc_la_LDFLAGS) \
325         $(libgcj_bc_la_OBJECTS) $(libgcj_bc_la_LIBADD) $(LIBS) || exit; \
326         rm .libs/libgcj_bc.so; \
327         mv .libs/libgcj_bc.so.1.0.0 .libs/libgcj_bc.so; \
328         $(libgcj_bc_dummy_LINK) -xc /dev/null -Wl,-soname,libgcj_bc.so.1 \
329         -o .libs/libgcj_bc.so.1.0.0 -lgcj || exit; \
330         rm .libs/libgcj_bc.so.1; \
331         $(LN_S) libgcj_bc.so.1.0.0 .libs/libgcj_bc.so.1
332
333 ## Note that property_files is defined in sources.am.
334 propertyo_files = $(patsubst classpath/resource/%,%,$(addsuffix .lo,$(property_files)))
335
336 $(propertyo_files): %.lo: classpath/resource/%
337         $(mkinstalldirs) `dirname $@`; \
338         $(LTGCJCOMPILE) -o $@ -c $< -Wc,--resource,$(@:.lo=)
339
340 libgcj-$(gcc_version).jar: classpath/lib/compile-classes
341 ## Note that this now omits the property files.
342 ## It doesn't matter since we don't use the jar at runtime.
343         here=`pwd`; cd $(srcdir)/classpath/lib; \
344         find gnu java javax org sun -name .svn -prune -o -name '*.class' -print | \
345         $(JAR) -cfM@ $$here/libgcj-$(gcc_version).jar
346
347 libgcj-tools-$(gcc_version).jar: classpath/tools/tools.zip
348         cp $< $@
349
350 CLEANFILES = libgcj-$(gcc_version).jar libgcj-tools-$(gcc_version).jar
351 DISTCLEANFILES = native.dirs
352
353 mostlyclean-local:
354 ## Use libtool rm to remove each libtool object
355         find . -name '*.lo' -print | xargs $(LIBTOOL) rm -f
356
357 distclean-local:
358 ## Remove every .d file that was created.
359         find . -name '*.d' -print | xargs rm -f
360
361 # Just remove the objects from C++ sources, for testing the C++ compiler.
362 clean-nat:
363         rm -f $(nat_files) $(xlib_nat_files)
364
365 SUFFIXES = .class .java .h .properties .list
366
367 ## Pass the list of object files to libtool in a temporary file to
368 ## avoid tripping platform command line length limits.
369 lib-gnu-awt-xlib.la: $(lib_gnu_awt_xlib_la_OBJECTS) $(lib_gnu_awt_xlib_la_DEPENDENCIES)
370         @echo Creating list of files to link...
371         @: $(call write_entries_to_file,$(lib_gnu_awt_xlib_la_OBJECTS) $(lib_gnu_awt_xlib_la_LIBADD),lib_gnu_awt_xlib.objectlist)
372         $(lib_gnu_awt_xlib_la_LINK) -objectlist lib_gnu_awt_xlib.objectlist \
373         -rpath $(toolexeclibdir) $(lib_gnu_awt_xlib_la_LDFLAGS) $(LIBS)
374
375 ## ################################################################
376
377 ## Compiling a list of java sources to a single .o.
378
379 %.lo: %.list
380         $(LTGCJCOMPILE) -c -o $@ -fsource-filename=$(here)/classpath/lib/classes -MT $@ -MD -MP -MF $(basename $@).deps @$<
381
382 java/lang/Object.lo: classpath/lib/java/lang/Object.class
383         $(LTGCJCOMPILE) -c -o $@ -fsource-filename=$(srcdir)/$(basename $@).java $<
384
385 java/lang/Class.lo: classpath/lib/java/lang/Class.class
386         $(LTGCJCOMPILE) -c -o $@  -fsource-filename=$(srcdir)/$(basename $@).java $<
387
388 ## ################################################################
389
390 ## This pulls in a number of variable and target definitions.
391 include sources.am
392
393 ## ################################################################
394
395 ##
396 ## How to build header files.
397 ##
398
399 ## We have special rules for certain headers.
400 omitted_headers = java/lang/ClassLoader.h java/lang/Thread.h \
401         java/lang/String.h java/lang/reflect/Constructor.h \
402         java/lang/reflect/Field.h java/lang/reflect/Method.h \
403         java/lang/reflect/Proxy.h gnu/gcj/runtime/ExtensionClassLoader.h
404
405 inner_nat_headers = java/io/ObjectOutputStream$$PutField.h \
406         java/io/ObjectInputStream$$GetField.h \
407         java/nio/DirectByteBufferImpl$$ReadWrite.h \
408         java/nio/channels/Pipe$$SinkChannel.h \
409         java/nio/channels/Pipe$$SourceChannel.h \
410         java/lang/VMProcess$ImmediateEOFInputStream.h \
411         java/lang/reflect/Proxy$$ProxyData.h \
412         java/lang/reflect/Proxy$$ProxyType.h \
413         gnu/java/net/PlainSocketImpl$$SocketInputStream.h \
414         gnu/java/net/PlainSocketImpl$$SocketOutputStream.h \
415         gnu/java/nio/PipeImpl$$SinkChannelImpl.h \
416         gnu/java/nio/PipeImpl$$SourceChannelImpl.h
417
418 generic_header_files = $(ordinary_header_files) $(inner_nat_headers) \
419         $(xlib_nat_headers)
420
421 MYGCJH = gjavah
422
423 $(generic_header_files): gcjh.stamp
424
425 gcjh.stamp: classpath/lib/compile-classes
426 if JAVA_MAINTAINER_MODE
427         $(MYGCJH) --cni --all $(srcdir)/classpath/lib \
428             --cmdfile=$(srcdir)/headers.txt -d $(srcdir) --force
429 endif
430         echo > gcjh.stamp
431
432 nat_headers = $(ordinary_header_files) $(inner_nat_headers)
433 nat_headers_install = $(ordinary_header_files)
434
435 xlib_nat_headers = $(gnu_awt_xlib_header_files) $(gnu_gcj_xlib_header_files)
436
437 ## Headers we maintain by hand and which we want to install.
438 extra_headers = java/lang/Object.h java/lang/Class.h
439
440 $(extra_headers) $(srcdir)/java/lang/Object.h $(srcdir)/java/lang/Class.h:
441         @:
442
443 install-exec-hook: install-toolexeclibLTLIBRARIES install-libexecsubPROGRAMS
444 ## Support for libgcj_bc: dummy shared library used only at link-time.
445 if USE_LIBGCJ_BC
446 ## Install libgcj_bc dummy lib in the target directory. We also need to delete
447 ## libtool's .la file, this prevents libtool resetting the lib again 
448 ## later.
449         @echo Installing dummy lib libgcj_bc.so.1.0.0; \
450         rm $(DESTDIR)$(toolexeclibdir)/libgcj_bc.so; \
451         mv $(DESTDIR)$(toolexeclibdir)/libgcj_bc.so.1.0.0 $(DESTDIR)$(toolexeclibdir)/libgcj_bc.so; \
452         $(libgcj_bc_dummy_LINK) -xc /dev/null -Wl,-soname,libgcj_bc.so.1 \
453         -o $(DESTDIR)$(toolexeclibdir)/libgcj_bc.so.1.0.0 -lgcj || exit; \
454         rm $(DESTDIR)$(toolexeclibdir)/libgcj_bc.so.1; \
455         $(LN_S) libgcj_bc.so.1.0.0 $(DESTDIR)$(toolexeclibdir)/libgcj_bc.so.1; \
456         rm $(DESTDIR)$(toolexeclibdir)/libgcj_bc.la;
457 endif
458 if BUILD_ECJ1
459 ## Undo any prepending of the target prefix and transform
460 ## to the actual host's executable suffix.
461         mv $(DESTDIR)$(libexecsubdir)/`echo ecjx | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'` $(DESTDIR)$(libexecsubdir)/ecj1$(host_exeext)
462 endif BUILD_ECJ1
463
464 ## Install the headers.  It is fairly ugly that we have to do this by
465 ## hand.
466 install-data-local:
467         $(PRE_INSTALL)
468 ## Install the .pc file.
469         @pc_version=`echo $(GCJVERSION) | sed -e 's/[.][^.]*$$//'`; \
470         file="libgcj-$${pc_version}.pc"; \
471         $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir); \
472         echo "  $(INSTALL_DATA) libgcj.pc $(DESTDIR)$(pkgconfigdir)/$$file"; \
473         $(INSTALL_DATA) libgcj.pc $(DESTDIR)$(pkgconfigdir)/$$file
474 ## We use a GNU make trick here so that we don't go over the command
475 ## length limit of some shells.
476         @echo Creating list of headers to install...
477         @: $(call write_entries_to_file,$(nat_headers_install) $(extra_headers),tmp-ilist)
478         @cat tmp-ilist | while read f; do \
479           d="`echo $$f | sed -e 's,/[^/]*$$,,'`"; \
480           $(mkinstalldirs) $(DESTDIR)$(gxx_include_dir)/$$d; \
481           if test -f $(srcdir)/$$f; then p=$(srcdir)/$$f; else p=$$f; fi; \
482           echo " $(INSTALL_DATA) $$p $(DESTDIR)$(gxx_include_dir)/$$f"; \
483           $(INSTALL_DATA) $$p $(DESTDIR)$(gxx_include_dir)/$$f; \
484         done
485         -@rm -f tmp-ilist
486 ## Install inner class headers.
487         $(INSTALL_DATA) $(srcdir)/'java/io/ObjectOutputStream$$PutField.h' $(DESTDIR)$(gxx_include_dir)/java/io/
488         $(INSTALL_DATA) $(srcdir)/'java/io/ObjectInputStream$$GetField.h' $(DESTDIR)$(gxx_include_dir)/java/io/
489         $(INSTALL_DATA) $(srcdir)/'java/nio/channels/Pipe$$SinkChannel.h' $(DESTDIR)$(gxx_include_dir)/java/nio/channels/
490         $(INSTALL_DATA) $(srcdir)/'java/nio/channels/Pipe$$SourceChannel.h' $(DESTDIR)$(gxx_include_dir)/java/nio/channels/
491         $(INSTALL_DATA) $(srcdir)/'java/lang/reflect/Proxy$$ProxyData.h' $(DESTDIR)$(gxx_include_dir)/java/lang/reflect/
492         $(INSTALL_DATA) $(srcdir)/'java/lang/reflect/Proxy$$ProxyType.h' $(DESTDIR)$(gxx_include_dir)/java/lang/reflect/
493         $(INSTALL_DATA) $(srcdir)/'gnu/java/net/PlainSocketImpl$$SocketInputStream.h' $(DESTDIR)$(gxx_include_dir)/gnu/java/net/
494         $(INSTALL_DATA) $(srcdir)/'gnu/java/net/PlainSocketImpl$$SocketOutputStream.h' $(DESTDIR)$(gxx_include_dir)/gnu/java/net/
495         $(INSTALL_DATA) $(srcdir)/'gnu/java/nio/PipeImpl$$SinkChannelImpl.h' $(DESTDIR)$(gxx_include_dir)/gnu/java/nio/
496         $(INSTALL_DATA) $(srcdir)/'gnu/java/nio/PipeImpl$$SourceChannelImpl.h' $(DESTDIR)$(gxx_include_dir)/gnu/java/nio/
497 ## Don't install java/nio/DirectByteBufferImpl$$ReadWrite.h here. It's for internal use only.
498
499
500 ## ################################################################
501
502 ##
503 ## Additional `check' targets for maintainer convenience.
504 ##
505
506 ## This is used for maintainer-check.  FIXME: should set from
507 ## configure using AC_CHECK_TOOL.
508 NM = nm
509
510 ## Try to make sure our library doesn't stomp the namespace.
511 maintainer-check: libgcj.la
512         $(NM) .libs/libgcj.a | grep ' T ' \
513 ## Anything with `4java' is assumed to be from .java source.
514           | grep -v '4java' \
515 ## Anything with Jv is ok.
516           | grep -v 'Jv' \
517 ## `terminate' and `unexpected' are part of the runtime.
518           | grep -v 'terminate__Fv' | grep -v 'unexpected__Fv'
519
520 ## This rule can be used to see if the headers are more or less
521 ## correct.
522 header-check: libgcj-$(gcc_version).jar $(nat_headers)
523         rm -f htest.cc; \
524         for h in $(nat_headers); do \
525           echo "#include \"$$h\"" >> htest.cc; \
526         done; \
527         $(CXXCOMPILE) -fsyntax-only htest.cc
528
529 ## This rule can be used to see if all the .class files verify
530 ## correctly.
531 class-check: libgcj-$(gcc_version).jar
532         @ok=0; find . -name '*.class' -print | fgrep -v testsuite | \
533         while read f; do \
534           echo "$(GCJ_WITH_FLAGS) --syntax-only $$f"; \
535           if $(GCJ_WITH_FLAGS) --syntax-only $$f; then \
536           :; else ok=1; fi; \
537         done; exit $$ok
538
539 ## This rule checks whether write_entries_to_file works properly.
540 write-entries-to-file-check:
541         @echo Creating list of files to link...
542         @: $(call write_entries_to_file,$(libgcj_la_OBJECTS) $(libgcj_la_LIBADD),libgcj.objectlist)
543
544 ## ################################################################
545
546 ##
547 ## The `jv-convert' program and code to rebuild the converter header
548 ## files.
549 ##
550
551 ## it only makes sense to try to rebuild the JIS .h files on native
552 ## systems.
553 if NATIVE
554 if MAINTAINER_MODE
555 noinst_PROGRAMS = gen-from-JIS
556
557 gen_from_JIS_SOURCES = \
558         gnu/gcj/convert/gen-from-JIS.c \
559         gnu/gcj/convert/make-trie.c
560
561 gen_from_JIS_DEPENDENCIES = \
562         gnu/gcj/convert/JIS0201.h \
563         gnu/gcj/convert/JIS0208.h \
564         gnu/gcj/convert/JIS0212.h
565
566 $(srcdir)/gnu/gcj/convert/JIS0208_to_Unicode.cc: ./gen-from-JIS$(EXEEXT)
567          ./gen-from-JIS JIS0208 >$(srcdir)/gnu/gcj/convert/JIS0208_to_Unicode.cc
568
569 $(srcdir)/gnu/gcj/convert/JIS0212_to_Unicode.cc: ./gen-from-JIS$(EXEEXT)
570          ./gen-from-JIS JIS0212 >$(srcdir)/gnu/gcj/convert/JIS0212_to_Unicode.cc
571
572 $(srcdir)/gnu/gcj/convert/Unicode_to_JIS.cc: ./gen-from-JIS$(EXEEXT)
573          ./gen-from-JIS toJIS >$(srcdir)/gnu/gcj/convert/Unicode_to_JIS.cc
574
575 # The Unicode consortium does not permit re-distributing the file JIS0201.TXT.
576 # You can get it from
577 # ftp://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/
578
579 $(srcdir)/gnu/gcj/convert/JIS0201.h: # gnu/gcj/convert/JIS0201.TXT
580         echo '/* This file is automatically generated from Unicode tables */' > tmp-0201; \
581         tr  -d '\r' <$(srcdir)/gnu/gcj/convert/JIS0201.TXT \
582         | sed -n -e 's|\(0x..\).*\(0x....\).*#\(.*\)$$|MAP(0x00, \1, \2)  /*\3 */|p' \
583         >> tmp-0201; \
584         mv tmp-0201 $(srcdir)/gnu/gcj/convert/JIS0201.h
585
586 # The Unicode consortium does not permit re-distributing the file JIS0208.TXT.
587 # You can get it from
588 # ftp://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/
589
590 $(srcdir)/gnu/gcj/convert/JIS0208.h: # gnu/gcj/convert/JIS0208.TXT
591         echo '/* This file is automatically generated from Unicode tables */' > tmp-0208; \
592         tr  -d '\r' <$(srcdir)/gnu/gcj/convert/JIS0208.TXT \
593         | sed -n -e 's|\(0x....\).*0x\(..\)\(..\).*\(0x....\).*#\(.*\)$$|MAP(0x\2, 0x\3, \4)  /*\5 */|p' \
594         >> tmp-0208; \
595         mv tmp-0208 $(srcdir)/gnu/gcj/convert/JIS0208.h
596
597 # The Unicode consortium does not permit re-distributing the file JIS0212.TXT.
598 # You can get it from
599 # ftp://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/
600
601 $(srcdir)/gnu/gcj/convert/JIS0212.h: # gnu/gcj/convert/JIS0212.TXT
602         echo '/* This file is automatically generated from Unicode tables */' > tmp-0212; \
603         tr  -d '\r' <$(srcdir)/gnu/gcj/convert/JIS0212.TXT \
604         | sed -n -e 's|0x\(..\)\(..\).*\(0x....\).*#\(.*\)$$|MAP(0x\1, 0x\2, \3)  /*\4 */|p' \
605         >> tmp-0212; \
606         mv tmp-0212 $(srcdir)/gnu/gcj/convert/JIS0212.h
607
608 endif
609 endif 
610
611
612 jv_convert_SOURCES =
613 ## We need -nodefaultlibs because we want to avoid gcj's `-lgcj'.  We
614 ## need this because we are explicitly using libtool to link using the
615 ## `.la' file.
616 jv_convert_LDFLAGS = --main=gnu.gcj.convert.Convert \
617         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
618 jv_convert_LINK = $(GCJLINK)
619 ## We don't explicitly link in the libraries we need; libgcj.la brings
620 ## in all dependencies.  We need the -L so that gcj can find libgcj
621 ## with `-lgcj', but it must come first, otherwise the -L flags
622 ## brought in from libgcj.la would cause the install directories to be
623 ## searched before the build-tree ones, and we'd get errors because of
624 ## different libraries with the same SONAME from picky linkers such as
625 ## Solaris'.  FIXME: should be _libs on some systems.
626 jv_convert_LDADD = -L$(here)/.libs libgcj.la
627 ## Depend on the spec file to make sure it is up to date before
628 ## linking this program.
629 jv_convert_DEPENDENCIES = libgcj.la libgcj.spec
630
631 gcj_dbtool_SOURCES = \
632 gnu/gcj/tools/gcj_dbtool/natMain.cc
633
634 ## We need -nodefaultlibs because we want to avoid gcj's `-lgcj'.  We
635 ## need this because we are explicitly using libtool to link using the
636 ## `.la' file.
637 gcj_dbtool_LDFLAGS = --main=gnu.gcj.tools.gcj_dbtool.Main \
638         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
639 gcj_dbtool_LINK = $(GCJLINK)
640 ## We don't explicitly link in the libraries we need; libgcj.la brings
641 ## in all dependencies.  We need the -L so that gcj can find libgcj
642 ## with `-lgcj', but it must come first, otherwise the -L flags
643 ## brought in from libgcj.la would cause the install directories to be
644 ## searched before the build-tree ones, and we'd get errors because of
645 ## different libraries with the same SONAME from picky linkers such as
646 ## Solaris'.  FIXME: should be _libs on some systems.
647 gcj_dbtool_LDADD = gnu/gcj/tools/gcj_dbtool.lo -L$(here)/.libs libgcj.la
648 ## Depend on the spec file to make sure it is up to date before
649 ## linking this program.
650 gcj_dbtool_DEPENDENCIES = gnu/gcj/tools/gcj_dbtool.lo libgcj.la libgcj.spec
651
652 gc_analyze_SOURCES =
653
654 ## We need -nodefaultlibs because we want to avoid gcj's `-lgcj'.  We
655 ## need this because we are explicitly using libtool to link using the
656 ## `.la' file.
657 gc_analyze_LDFLAGS = --main=gnu.gcj.tools.gc_analyze.MemoryAnalyze \
658         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
659 gc_analyze_LINK = $(GCJLINK)
660 ## See jv_convert_LDADD.
661 gc_analyze_LDADD = -L$(here)/.libs libgcj-tools.la libgcj.la
662 ## Depend on the spec file to make sure it is up to date before
663 ## linking this program.
664 gc_analyze_DEPENDENCIES = libgcj-tools.la libgcj.la libgcj.spec
665
666 gij_SOURCES = 
667 ## We need -nodefaultlibs because we want to avoid gcj's `-lgcj'.  We
668 ## need this because we are explicitly using libtool to link using the
669 ## `.la' file.
670 gij_LDFLAGS = -rpath $(dbexecdir) -rpath $(toolexeclibdir) \
671         -shared-libgcc $(THREADLDFLAGS)
672 gij_LINK = $(GCJLINK)
673 ## See jv_convert_LDADD.
674 gij_LDADD = -L$(here)/.libs libgij.la
675 ## Depend on the spec file to make sure it is up to date before
676 ## linking this program.
677 gij_DEPENDENCIES = libgij.la
678
679 ## Build an ecjx from a .jar.
680 ecjx_SOURCES =
681 ## We use the BC ABI here so that we don't need to compile ecj.jar.
682 ## Hopefully the user has compiled it into his system .db.
683 ## However, even if not it will run reasonably quickly.
684
685 ECJX_BASE_FLAGS = -findirect-dispatch \
686         --main=org.eclipse.jdt.internal.compiler.batch.GCCMain
687
688 if NATIVE
689
690 ecjx_LINK = $(GCJLINK)
691
692 if ENABLE_SHARED
693 ## Use ecj.jar at runtime.
694 ecjx_LDFLAGS = $(ECJX_BASE_FLAGS) -Djava.class.path=$(ECJ_JAR)
695 else !ENABLE_SHARED
696 ## Use ecj.jar at compile time.
697 ecjx_LDFLAGS = $(ECJX_BASE_FLAGS) $(ECJ_BUILD_JAR) -fbootclasspath=$(BOOTCLASSPATH)
698 endif !ENABLE_SHARED
699
700 ecjx_LDADD = -L$(here)/.libs libgcj.la
701 ecjx_DEPENDENCIES = libgcj.la libgcj.spec
702 if USE_LIBGCJ_BC
703 ecjx_DEPENDENCIES += libgcj_bc.la
704 endif
705
706 else !NATIVE
707
708 ecjx_LINK = $(GCJ_FOR_ECJX_LINK)
709 ecjx_LDFLAGS = $(ECJX_BASE_FLAGS) $(ECJ_BUILD_JAR)
710 ecjx_LDADD = 
711 ecjx_DEPENDENCIES = 
712
713 endif !NATIVE
714
715 ## This is a dummy definition.
716 gappletviewer_SOURCES =
717 gappletviewer_LDFLAGS = --main=gnu.classpath.tools.appletviewer.Main \
718         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
719 gappletviewer_LINK = $(GCJLINK)
720 ## See jv_convert_LDADD.
721 gappletviewer_LDADD = -L$(here)/.libs libgcj-tools.la
722 gappletviewer_DEPENDENCIES = libgcj-tools.la
723
724 ## This is a dummy definition.
725 gjarsigner_SOURCES =
726 gjarsigner_LDFLAGS = --main=gnu.classpath.tools.jarsigner.Main \
727         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
728 gjarsigner_LINK = $(GCJLINK)
729 ## See jv_convert_LDADD.
730 gjarsigner_LDADD = -L$(here)/.libs libgcj-tools.la
731 gjarsigner_DEPENDENCIES = libgcj-tools.la
732
733 ## This is a dummy definition.
734 gkeytool_SOURCES =
735 gkeytool_LDFLAGS = --main=gnu.classpath.tools.keytool.Main \
736         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
737 gkeytool_LINK = $(GCJLINK)
738 ## See jv_convert_LDADD.
739 gkeytool_LDADD = -L$(here)/.libs libgcj-tools.la
740 gkeytool_DEPENDENCIES = libgcj-tools.la
741
742 ## This is a dummy definition.
743 gjar_SOURCES =
744 gjar_LDFLAGS = --main=gnu.classpath.tools.jar.Main \
745         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
746 gjar_LINK = $(GCJLINK)
747 ## See jv_convert_LDADD.
748 gjar_LDADD = -L$(here)/.libs libgcj-tools.la
749 gjar_DEPENDENCIES = libgcj-tools.la
750
751 ## This is a dummy definition.
752 gjavah_SOURCES =
753 gjavah_LDFLAGS = --main=gnu.classpath.tools.javah.Main \
754         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
755 gjavah_LINK = $(GCJLINK)
756 ## See jv_convert_LDADD.
757 gjavah_LDADD = -L$(here)/.libs libgcj-tools.la
758 gjavah_DEPENDENCIES = libgcj-tools.la
759
760 ## This is a dummy definition.
761 gcjh_SOURCES =
762 gcjh_LDFLAGS = --main=gnu.classpath.tools.javah.GcjhMain \
763         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
764 gcjh_LINK = $(GCJLINK)
765 ## See jv_convert_LDADD.
766 gcjh_LDADD = -L$(here)/.libs libgcj-tools.la
767 gcjh_DEPENDENCIES = libgcj-tools.la
768
769 ## This is a dummy definition.
770 gnative2ascii_SOURCES =
771 gnative2ascii_LDFLAGS = --main=gnu.classpath.tools.native2ascii.Native2ASCII \
772         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
773 gnative2ascii_LINK = $(GCJLINK)
774 ## See jv_convert_LDADD.
775 gnative2ascii_LDADD = -L$(here)/.libs libgcj-tools.la
776 gnative2ascii_DEPENDENCIES = libgcj-tools.la
777
778 ## This is a dummy definition.
779 gorbd_SOURCES =
780 gorbd_LDFLAGS = --main=gnu.classpath.tools.orbd.Main \
781         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
782 gorbd_LINK = $(GCJLINK)
783 ## See jv_convert_LDADD.
784 gorbd_LDADD = -L$(here)/.libs libgcj-tools.la
785 gorbd_DEPENDENCIES = libgcj-tools.la
786
787 ## This is a dummy definition.
788 grmid_SOURCES =
789 grmid_LDFLAGS = --main=gnu.classpath.tools.rmid.Main \
790         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
791 grmid_LINK = $(GCJLINK)
792 ## See jv_convert_LDADD.
793 grmid_LDADD = -L$(here)/.libs libgcj-tools.la
794 grmid_DEPENDENCIES = libgcj-tools.la
795
796 ## This is a dummy definition.
797 gserialver_SOURCES =
798 gserialver_LDFLAGS = --main=gnu.classpath.tools.serialver.SerialVer \
799         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
800 gserialver_LINK = $(GCJLINK)
801 ## See jv_convert_LDADD.
802 gserialver_LDADD = -L$(here)/.libs libgcj-tools.la
803 gserialver_DEPENDENCIES = libgcj-tools.la
804
805 ## This is a dummy definition.
806 gtnameserv_SOURCES =
807 gtnameserv_LDFLAGS = --main=gnu.classpath.tools.tnameserv.Main \
808         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
809 gtnameserv_LINK = $(GCJLINK)
810 ## See jv_convert_LDADD.
811 gtnameserv_LDADD = -L$(here)/.libs libgcj-tools.la
812 gtnameserv_DEPENDENCIES = libgcj-tools.la
813
814 ## This is a dummy definition.
815 grmic_SOURCES =
816 grmic_LDFLAGS = --main=gnu.classpath.tools.rmic.Main \
817         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
818 grmic_LINK = $(GCJLINK)
819 ## See jv_convert_LDADD.
820 grmic_LDADD = -L$(here)/.libs libgcj-tools.la
821 grmic_DEPENDENCIES = libgcj-tools.la
822
823 ## This is a dummy definition.
824 grmiregistry_SOURCES =
825 grmiregistry_LDFLAGS = --main=gnu.classpath.tools.rmiregistry.Main \
826         -rpath $(toolexeclibdir) -shared-libgcc $(THREADLDFLAGS)
827 grmiregistry_LINK = $(GCJLINK)
828 ## See jv_convert_LDADD.
829 grmiregistry_LDADD = -L$(here)/.libs libgcj-tools.la
830 grmiregistry_DEPENDENCIES = libgcj-tools.la
831
832 ## ################################################################
833
834 ## This lists all the C++ source files in subdirectories.
835 nat_source_files = \
836 gnu/classpath/jdwp/natVMFrame.cc \
837 gnu/classpath/jdwp/natVMMethod.cc \
838 gnu/classpath/jdwp/natVMVirtualMachine.cc \
839 gnu/classpath/natConfiguration.cc \
840 gnu/classpath/natSystemProperties.cc \
841 gnu/classpath/natVMStackWalker.cc \
842 gnu/gcj/natCore.cc \
843 gnu/gcj/convert/JIS0208_to_Unicode.cc \
844 gnu/gcj/convert/JIS0212_to_Unicode.cc \
845 gnu/gcj/convert/Unicode_to_JIS.cc \
846 gnu/gcj/convert/natIconv.cc \
847 gnu/gcj/convert/natInput_EUCJIS.cc \
848 gnu/gcj/convert/natInput_SJIS.cc \
849 gnu/gcj/convert/natOutput_EUCJIS.cc \
850 gnu/gcj/convert/natOutput_SJIS.cc \
851 gnu/gcj/io/natSimpleSHSStream.cc \
852 gnu/gcj/io/shs.cc \
853 gnu/gcj/jvmti/natBreakpoint.cc \
854 gnu/gcj/jvmti/natExceptionEvent.cc \
855 gnu/gcj/runtime/natFinalizerThread.cc \
856 gnu/gcj/runtime/natSharedLibLoader.cc \
857 gnu/gcj/runtime/natSystemClassLoader.cc \
858 gnu/gcj/runtime/natStringBuffer.cc \
859 gnu/gcj/util/natDebug.cc \
860 gnu/gcj/util/natGCInfo.cc \
861 gnu/java/lang/natMainThread.cc \
862 gnu/java/lang/management/natVMClassLoadingMXBeanImpl.cc \
863 gnu/java/lang/management/natVMCompilationMXBeanImpl.cc \
864 gnu/java/lang/management/natVMGarbageCollectorMXBeanImpl.cc \
865 gnu/java/lang/management/natVMMemoryMXBeanImpl.cc \
866 gnu/java/lang/management/natVMMemoryManagerMXBeanImpl.cc \
867 gnu/java/lang/management/natVMMemoryPoolMXBeanImpl.cc \
868 gnu/java/lang/management/natVMRuntimeMXBeanImpl.cc \
869 gnu/java/lang/management/natVMThreadMXBeanImpl.cc \
870 gnu/java/net/natPlainDatagramSocketImpl.cc \
871 gnu/java/net/natPlainSocketImpl.cc \
872 gnu/java/net/protocol/core/natCoreInputStream.cc \
873 gnu/java/nio/natVMPipe.cc \
874 gnu/java/nio/natVMSelector.cc \
875 gnu/java/nio/natNIOServerSocket.cc \
876 gnu/java/nio/natVMChannel.cc \
877 gnu/java/nio/channels/natFileChannelImpl.cc \
878 java/io/natFile.cc \
879 java/io/natVMObjectInputStream.cc \
880 java/io/natVMObjectStreamClass.cc \
881 java/lang/natCharacter.cc \
882 java/lang/natClass.cc \
883 java/lang/natClassLoader.cc \
884 java/lang/natConcreteProcess.cc \
885 java/lang/natVMDouble.cc \
886 java/lang/natVMFloat.cc \
887 java/lang/natMath.cc \
888 java/lang/natObject.cc \
889 java/lang/natRuntime.cc \
890 java/lang/natString.cc \
891 java/lang/natStringBuffer.cc \
892 java/lang/natStringBuilder.cc \
893 java/lang/natSystem.cc \
894 java/lang/natThread.cc \
895 java/lang/natThreadLocal.cc \
896 java/lang/natVMClassLoader.cc \
897 java/lang/natVMProcess.cc \
898 java/lang/natVMThrowable.cc \
899 java/lang/ref/natReference.cc \
900 java/lang/reflect/natArray.cc \
901 java/lang/reflect/natConstructor.cc \
902 java/lang/reflect/natField.cc \
903 java/lang/reflect/natMethod.cc \
904 java/lang/reflect/natVMProxy.cc \
905 java/net/natVMInetAddress.cc \
906 java/net/natVMNetworkInterface.cc \
907 java/net/natVMURLConnection.cc \
908 java/nio/channels/natVMChannels.cc \
909 java/nio/natVMDirectByteBufferImpl.cc \
910 java/security/natVMAccessController.cc \
911 java/security/natVMAccessControlState.cc \
912 java/text/natCollator.cc \
913 java/util/natVMTimeZone.cc \
914 java/util/concurrent/atomic/natAtomicLong.cc \
915 java/util/logging/natLogger.cc \
916 java/util/zip/natDeflater.cc \
917 java/util/zip/natInflater.cc \
918 sun/misc/natUnsafe.cc
919
920 xlib_nat_source_files = \
921 gnu/gcj/xlib/natClip.cc \
922 gnu/gcj/xlib/natColormap.cc \
923 gnu/gcj/xlib/natDisplay.cc \
924 gnu/gcj/xlib/natDrawable.cc \
925 gnu/gcj/xlib/natFont.cc \
926 gnu/gcj/xlib/natGC.cc \
927 gnu/gcj/xlib/natPixmap.cc \
928 gnu/gcj/xlib/natScreen.cc \
929 gnu/gcj/xlib/natVisual.cc \
930 gnu/gcj/xlib/natWMSizeHints.cc \
931 gnu/gcj/xlib/natWindow.cc \
932 gnu/gcj/xlib/natWindowAttributes.cc \
933 gnu/gcj/xlib/natXAnyEvent.cc \
934 gnu/gcj/xlib/natXButtonEvent.cc \
935 gnu/gcj/xlib/natXColor.cc \
936 gnu/gcj/xlib/natXConfigureEvent.cc \
937 gnu/gcj/xlib/natXException.cc \
938 gnu/gcj/xlib/natXExposeEvent.cc \
939 gnu/gcj/xlib/natXImage.cc \
940 gnu/gcj/xlib/natXUnmapEvent.cc
941
942 ## ################################################################
943
944 ##
945 ## Creating and installing sources.zip
946 ##
947
948 ## Create a zip holding all the sources.  This can be meaningfully
949 ## used in Eclipse.
950 src.zip:
951         -rm -f src.zip
952         here=`pwd`; \
953         ( \
954           ( cd $(srcdir)/classpath; \
955           find java gnu javax org sun -name '*.java' -print | \
956           while read file; do \
957 ## Ugly code to avoid "echo -C".  Must separate each entry by a newline
958 ## Gross but easy.
959             echo "x-C" | sed -e 's/^.//'; \
960             echo $(srcdir)/classpath; \
961             echo $$file; \
962           done ); \
963           ( cd $(srcdir)/classpath/external/sax; \
964           find org -name '*.java' -print | \
965           while read file; do \
966             echo "x-C" | sed -e 's/^.//'; \
967             echo $(srcdir)/classpath/external/sax; \
968             echo $$file; \
969           done ); \
970           ( cd $(srcdir)/classpath/external/relaxngDatatype; \
971           find org -name '*.java' -print | \
972           while read file; do \
973             echo "x-C" | sed -e 's/^.//'; \
974             echo $(srcdir)/classpath/external/relaxngDatatype; \
975             echo $$file; \
976           done ); \
977           ( cd $(srcdir)/classpath/external/w3c_dom; \
978           find org -name '*.java' -print | \
979           while read file; do \
980             echo "x-C" | sed -e 's/^.//'; \
981             echo $(srcdir)/classpath/external/w3c_dom; \
982             echo $$file; \
983           done ); \
984 ## Now the build tree.
985           ( cd classpath; \
986             find gnu java -name '*.java' -print | \
987             while read file; do \
988             echo "x-C" | sed -e 's/^.//'; \
989             echo `pwd`; \
990             echo $$file; \
991           done ); \
992         ) | \
993 ## Many of the above circumlocutions were because ZIP used to be a
994 ## relative path to fastjar.  It didn't seem worthwhile to change the
995 ## code when we moved to an external jar.
996         $(JAR) -cfM@ $$here/src.zip
997 ## Override GNU Classpath sources with libgcj replacements.
998         here=`pwd`; \
999         ( \
1000           ( cd $(srcdir); \
1001           find gnu java -name '*.java' -print | \
1002           while read file; do \
1003             echo "x-C" | sed -e 's/^.//'; \
1004             echo $(srcdir); \
1005             echo $$file; \
1006           done ); \
1007         ) | \
1008         $(JAR) -ufM@ $$here/src.zip
1009
1010 ## We use a variable for this in case the user wants to override it.
1011 sourcesdir = $(jardir)
1012
1013 install-src.zip: src.zip
1014         $(INSTALL_DATA) src.zip $(DESTDIR)$(sourcesdir)/src-$(gcc_version).zip
1015
1016
1017 ## ################################################################
1018
1019 ##
1020 ## Dependency tracking madness.
1021 ##
1022
1023 ## This is an evil hack to work around an automake limitation.  We
1024 ## need to ensure that all CNI headers are built, not just the ones
1025 ## used internally by libgcj. We can't make the .o files depend on
1026 ## nat_headers, because in that case we'll force a complete rebuild of
1027 ## the C++ code whenever any .java file is touched.  So instead we
1028 ## have a dummy rule which is only used once, namely the first time a
1029 ## build is done.  On subsequent builds, the dependency tracking for
1030 ## the .cc compilations will have picked up the .h files, and these
1031 ## will be built directly as needed.
1032
1033 headers.stamp:
1034 ## Note that we don't use a real dependency here, since we don't want
1035 ## to rebuild all the headers here when the header list changes.  If
1036 ## we did rebuild here, then any addition of a .java file would cause
1037 ## a large number of recompilations.
1038         $(MAKE) create-headers
1039         @echo > headers.stamp
1040
1041 headers_to_make = $(nat_headers)
1042 if XLIB_AWT
1043 headers_to_make += $(xlib_nat_headers)
1044 endif
1045
1046 create-headers: $(headers_to_make)
1047
1048 .PHONY: create-headers
1049
1050 $(libgcj_la_OBJECTS) $(gcj_dbtool_OBJECTS) $(xlib_nat_files): headers.stamp
1051 $(libgij_la_OBJECTS): headers.stamp
1052 $(libjvm_la_OBJECTS): headers.stamp
1053
1054 ## ################################################################
1055
1056 ##
1057 ## This section is for make and multilib madness.
1058 ##
1059
1060 # Work around what appears to be a GNU make bug handling MAKEFLAGS
1061 # values defined in terms of make variables, as is the case for CC and
1062 # friends when we are called from the top level Makefile.
1063 AM_MAKEFLAGS = \
1064         "AR_FLAGS=$(AR_FLAGS)" \
1065         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
1066         "CFLAGS=$(CFLAGS)" \
1067         "CXXFLAGS=$(CXXFLAGS)" \
1068         "CPPFLAGS=$(CPPFLAGS)" \
1069         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
1070         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
1071         "INSTALL=$(INSTALL)" \
1072         "INSTALL_DATA=$(INSTALL_DATA)" \
1073         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
1074         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
1075         "GCJFLAGS=$(GCJFLAGS)" \
1076         "LDFLAGS=$(LDFLAGS)" \
1077         "LIBCFLAGS=$(LIBCFLAGS)" \
1078         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
1079         "MAKE=$(MAKE)" \
1080         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
1081         "PICFLAG=$(PICFLAG)" \
1082         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
1083         "SHELL=$(SHELL)" \
1084         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
1085         "exec_prefix=$(exec_prefix)" \
1086         "infodir=$(infodir)" \
1087         "libdir=$(libdir)" \
1088         "mandir=$(mandir)" \
1089         "prefix=$(prefix)" \
1090         "gxx_include_dir=$(gxx_include_dir)" \
1091         "AR=$(AR)" \
1092         "AS=$(AS)" \
1093         "LD=$(LD)" \
1094         "LIBCFLAGS=$(LIBCFLAGS)" \
1095         "NM=$(NM)" \
1096         "PICFLAG=$(PICFLAG)" \
1097         "RANLIB=$(RANLIB)" \
1098         "DESTDIR=$(DESTDIR)" \
1099         "JAR=$(JAR)"
1100
1101 # Subdir rules rely on $(FLAGS_TO_PASS)
1102 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
1103
1104 CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host
1105
1106 MAKEOVERRIDES=
1107
1108 # No install-html or install-pdf support in automake yet
1109 .PHONY: install-html install-pdf
1110 install-html:
1111 install-pdf:
1112
1113 # Multilib support variables.
1114 MULTISRCTOP =
1115 MULTIBUILDTOP =
1116 MULTIDIRS =
1117 MULTISUBDIR =
1118 MULTIDO = true
1119 MULTICLEAN = true
1120
1121 # Multilib support.
1122 .PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \
1123         maintainer-clean-multi
1124
1125 all-recursive: all-multi
1126 install-recursive: install-multi
1127 mostlyclean-recursive: mostlyclean-multi
1128 clean-recursive: clean-multi
1129 distclean-recursive: distclean-multi
1130 maintainer-clean-recursive: maintainer-clean-multi
1131
1132 all-multi:
1133         : $(MAKE) ; exec $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do
1134 install-multi:
1135         $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do
1136 mostlyclean-multi:
1137         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean
1138 clean-multi:
1139         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean
1140 distclean-multi:
1141         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean
1142 maintainer-clean-multi:
1143         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean