OSDN Git Service

* Make-lang.in (JAVA_SRCS): Include java-tree.h.
[pf3gnuchains/gcc-fork.git] / gcc / java / Make-lang.in
1 # Top level makefile fragment for the GNU compiler for the Java(TM)
2 # language.
3 #   Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
4
5 #This file is part of GNU CC.
6
7 #GNU CC is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 2, or (at your option)
10 #any later version.
11
12 #GNU CC is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #GNU General Public License for more details.
16
17 #You should have received a copy of the GNU General Public License
18 #along with GNU CC; see the file COPYING.  If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330,
20 #Boston, MA 02111-1307, USA.
21
22 #Java and all Java-based marks are trademarks or registered trademarks
23 #of Sun Microsystems, Inc. in the United States and other countries.
24 #The Free Software Foundation is independent of Sun Microsystems, Inc.
25
26 # This file provides the language dependent support in the main Makefile.
27 # Each language makefile fragment must provide the following targets:
28 #
29 # foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
30 # foo.info, foo.dvi,
31 # foo.install-normal, foo.install-common, foo.install-info, foo.install-man,
32 # foo.uninstall, foo.distdir,
33 # foo.mostlyclean, foo.clean, foo.distclean, foo.extraclean,
34 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
35 #
36 # where `foo' is the name of the language.
37 #
38 # It should also provide rules for:
39 #
40 # - making any compiler driver (eg: g++)
41 # - the compiler proper (eg: jc1)
42 # - define the names for selecting the language in LANGUAGES.
43 #\f
44 # Extra flags to pass to recursive makes.
45 JAVA_FLAGS_TO_PASS = \
46         "JAVA_FOR_BUILD=$(JAVA_FOR_BUILD)" \
47         "JAVAFLAGS=$(JAVAFLAGS)" \
48         "JAVA_FOR_TARGET=$(JAVA_FOR_TARGET)"
49
50 # Actual names to use when installing a native compiler.
51 JAVA_INSTALL_NAME = `t='$(program_transform_name)'; echo gcj | sed $$t`
52
53 # Actual names to use when installing a cross-compiler.
54 JAVA_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcj | sed $$t`
55
56 #\f
57 GCJ = gcj
58
59 # Define the names for selecting java in LANGUAGES.
60 java: jc1$(exeext) $(GCJ)$(exeext) jvgenmain$(exeext) gcjh$(exeext) jv-scan$(exeext) jcf-dump$(exeext)
61
62 # Define the name of target independant tools to be installed in $(bindir)
63 # Names are subject to changes
64 JAVA_TARGET_INDEPENDENT_BIN_TOOLS = gcjh jv-scan jcf-dump
65
66 # Tell GNU make to ignore these if they exist.
67 .PHONY: java
68
69 # Remember to keep this list in sync with JAVA_OBJS in Makefile.in!!!
70 #
71 JAVA_SRCS = $(srcdir)/java/parse.y $(srcdir)/java/class.c \
72   $(srcdir)/java/decl.c $(srcdir)/java/expr.c $(srcdir)/java/constants.c \
73   $(srcdir)/java/lang.c $(srcdir)/java/typeck.c $(srcdir)/java/except.c \
74   $(srcdir)/java/verify.c $(srcdir)/java/zextract.c $(srcdir)/java/jcf-io.c \
75   $(srcdir)/java/jcf-parse.c $(srcdir)/java/mangle.c \
76   $(srcdir)/java/jcf-write.c $(srcdir)/java/buffer.c \
77   $(srcdir)/java/check-init.c $(srcdir)/java/lex.c $(srcdir)/java/boehm.c \
78   $(srcdir)/java/jcf-depend.c  $(srcdir)/java/jcf-path.c \
79   $(srcdir)/java/java-tree.h
80
81 jvspec.o: $(srcdir)/java/jvspec.c system.h $(GCC_H)
82         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) \
83                 $(INCLUDES) $(srcdir)/java/jvspec.c
84
85 # Create the compiler driver for $(GCJ).
86 $(GCJ)$(exeext): gcc.o jvspec.o version.o \
87            prefix.o intl.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
88         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o jvspec.o prefix.o intl.o \
89           version.o $(EXTRA_GCC_OBJS) $(LIBS)
90
91 # Create a version of the $(GCJ) driver which calls the cross-compiler.
92 $(GCJ)-cross$(exeext): $(GCJ)$(exeext)
93         -rm -f $(GCJ)-cross$(exeext)
94         cp $(GCJ)$(exeext) $(GCJ)-cross$(exeext)
95
96 # Dependencies here must be kept in sync with dependencies in Makefile.in.
97 jvgenmain$(exeext): $(srcdir)/java/jvgenmain.c $(srcdir)/java/mangle.c \
98                 $(LIBDEPS) $(TREE_H)
99         cd java && $(MAKE) $(LANG_FLAGS_TO_PASS) $(JAVA_FLAGS_TO_PASS) ../jvgenmain$(exeext)
100
101 # This must be kept in sync with dependencies in Makefile.in.
102 GCJH_SOURCES = $(srcdir)/java/gjavah.c $(srcdir)/java/jcf-io.c \
103         $(srcdir)/java/zextract.c $(srcdir)/java/jcf-reader.c \
104         $(srcdir)/java/jcf.h $(srcdir)/java/javaop.h \
105         $(srcdir)/java/javaop.def $(srcdir)/java/jcf-depend.c \
106         $(srcdir)/java/jcf-path.c
107
108 $(INTL_TARGETS): $(srcdir)/java/parse.c $(srcdir)/java/parse-scan.c
109
110 # Separating PARSE_DIR from PARSE_RELDIR lets us easily change the
111 # code to support building parse.c in the build directory, at some
112 # expense in readability.
113 # This code must be kept in sync with Makefile.in.
114 PARSE_DIR = $(srcdir)/java
115 PARSE_RELDIR = .
116 PARSE_C = $(PARSE_DIR)/parse.c
117 PARSE_SCAN_C = $(PARSE_DIR)/parse-scan.c
118
119 SET_BISON = here=`pwd`; sdir=`cd $(srcdir) && pwd`; if test -f ../bison; then bison="$$here/../bison/bison -L $$sdir"; else bison=bison; fi
120 BISONFLAGS =
121 JAVABISONFLAGS = --name-prefix=java_
122
123 $(PARSE_C):  $(srcdir)/java/parse.y
124         $(SET_BISON); \
125         cd $(PARSE_DIR) && $$bison -t $(BISONFLAGS) $(JAVABISONFLAGS) \
126             -o parse.c $(PARSE_RELDIR)/parse.y
127 $(PARSE_SCAN_C):  $(srcdir)/java/parse-scan.y
128         $(SET_BISON); \
129         cd $(PARSE_DIR) && $$bison -t $(BISONFLAGS) -o parse-scan.c \
130             $(PARSE_RELDIR)/parse-scan.y
131
132 # This must be kept in sync with dependencies in Makefile.in.
133 JV_SCAN_SOURCES = $(srcdir)/java/parse-scan.y $(srcdir)/java/lex.c \
134        $(srcdir)/java/parse.h $(srcdir)/java/lex.h $(srcdir)/java/jv-scan.c
135
136 # This must be kept in sync with dependencies in Makefile.in.
137 JCF_DUMP_SOURCES = $(srcdir)/java/jcf-dump.c $(srcdir)/java/jcf-io.c \
138        $(srcdir)/java/zextract.c $(TREE_H)
139
140 jc1$(exeext) gcjh$(exeext) jv-scan$(exeext) jcf-dump$(exeext): s-java
141
142 s-java: $(P) $(JAVA_SRCS) $(LIBDEPS) $(BACKEND) ggc-callbacks.o \
143         $(GCJH_SOURCES) $(LIBDEPS) $(TREE_H) \
144         $(JV_SCAN_SOURCES) $(BACKEND) $(LIBDEPS) \
145         $(JCF_DUMP_SOURCES)
146         cd java; $(MAKE) $(LANG_FLAGS_TO_PASS) $(JAVA_FLAGS_TO_PASS) \
147         ../jc1$(exeext) \
148         ../gcjh$(exeext) \
149         ../jv-scan$(exeext) \
150         ../jcf-dump$(exeext)
151         touch s-java
152 #\f
153 # Build hooks:
154
155 java.all.build: $(GCJ)$(exeext)
156 java.all.cross: $(GCJ)-cross$(exeext)
157 java.start.encap: $(GCJ)$(exeext)
158 java.rest.encap:
159
160 java.info:
161
162 # Install hooks:
163 # jc1, gcj, jvgenmain, and gcjh are installed elsewhere as part
164 # of $(COMPILERS).
165
166 # Nothing to do here.
167 java.install-normal:
168
169 java.install-common:
170         -if [ -f $(GCJ)$(exeext) ]; then \
171           if [ -f $(GCJ)-cross$(exeext) ]; then \
172             rm -f $(bindir)/$(JAVA_CROSS_NAME)$(exeext); \
173             $(INSTALL_PROGRAM) $(GCJ)-cross$(exeext) $(bindir)/$(JAVA_CROSS_NAME)$(exeext); \
174             chmod a+x $(bindir)/$(JAVA_CROSS_NAME)$(exeext); \
175           else \
176             rm -f $(bindir)/$(JAVA_INSTALL_NAME)$(exeext); \
177             $(INSTALL_PROGRAM) $(GCJ)$(exeext) $(bindir)/$(JAVA_INSTALL_NAME)$(exeext); \
178             chmod a+x $(bindir)/$(JAVA_INSTALL_NAME)$(exeext); \
179           fi ; \
180         fi ; \
181         for tool in $(JAVA_TARGET_INDEPENDENT_BIN_TOOLS); do \
182           if [ -f $$tool$(exeext) ]; then \
183             rm -f $(bindir)/$$tool$(exeext); \
184             $(INSTALL_PROGRAM) $$tool$(exeext) $(bindir)/$$tool$(exeext); \
185             chmod a+x $(bindir)/$$tool$(exeext); \
186           fi ; \
187        done
188
189 java.install-man:
190
191 java.uninstall:
192         -rm -rf $(bindir)/$(JAVA_INSTALL_NAME)$(exeext)
193         -rm -rf $(bindir)/$(JAVA_CROSS_NAME)$(exeext)
194
195 java.install-info:
196
197 #\f
198 # Clean hooks:
199 # A lot of the ancillary files are deleted by the main makefile.
200 # We just have to delete files specific to us.
201
202 java.mostlyclean:
203         -rm -f java/*$(objext) $(DEMANGLER_PROG)
204         -rm -f jc1$(exeext) $(GCJ)$(exeext) jvgenmain$(exeext) gcjh$(exeext) jv-scan$(exeext) jcf-dump$(exeext) s-java
205 java.clean:
206 java.distclean:
207         -rm -f java/config.status java/Makefile
208         -rm -f java/parse.output
209 java.extraclean:
210 java.maintainer-clean:
211         -rm -f java/parse.c java/parse-scan.c java/parse.output java/y.tab.c
212 #\f
213 # Stage hooks:
214 # The main makefile has already created stage?/java.
215
216 java.stage1: stage1-start
217         -mv java/*$(objext) stage1/java
218 java.stage2: stage2-start
219         -mv java/*$(objext) stage2/java
220 java.stage3: stage3-start
221         -mv java/*$(objext) stage3/java
222 java.stage4: stage4-start
223         -mv java/*$(objext) stage4/java
224 #\f
225 # Maintenance hooks:
226
227 # This target creates the files that can be rebuilt, but go in the
228 # distribution anyway.  It then copies the files to the distdir directory.
229 java.distdir:
230         mkdir tmp/java
231         cd java ; $(MAKE) $(LANG_FLAGS_TO_PASS) $(JAVA_FLAGS_TO_PASS) parse.c hash.h
232         cd java; \
233         for file in *[0-9a-zA-Z+]; do \
234           ln $$file ../tmp/java >/dev/null 2>&1 || cp $$file ../tmp/java; \
235         done