1 # Top level -*- makefile -*- fragment for GNU Objective-C++
2 # Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
3 # Free Software Foundation, Inc.
4 # Contributed by Ziemowit Laski <zlaski@apple.com>
6 #This file is part of GCC.
8 #GCC is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 3, or (at your option)
13 #GCC is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU General Public License for more details.
18 #You should have received a copy of the GNU General Public License
19 #along with GCC; see the file COPYING3. If not see
20 #<http://www.gnu.org/licenses/>.
23 # This file provides the language dependent support in the main Makefile.
24 # Each language makefile fragment must provide the following targets:
26 # foo.all.cross, foo.start.encap, foo.rest.encap,
27 # foo.install-common, foo.install-man, foo.install-info, foo.install-pdf,
28 # foo.install-html, foo.info, foo.dvi, foo.pdf, foo.html, foo.uninstall,
29 # foo.mostlyclean, foo.clean, foo.distclean,
30 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
32 # where `foo' is the name of the language.
34 # It should also provide rules for:
36 # - making any compiler driver (eg: g++)
37 # - the compiler proper (eg: cc1plus)
38 # - define the names for selecting the language in LANGUAGES.
41 # Define the names for selecting Objective-C++ in LANGUAGES.
42 obj-c++: cc1objplus$(exeext)
44 # Tell GNU make to ignore these if they exist.
47 START_HDRS = $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(CXX_TREE_H) \
48 $(CXX_PARSER_H) $(CXX_PRETTY_PRINT_H) langhooks.h c-family/c-objc.h objc/objc-act.h
50 # Use maximal warnings for this front end. Also, make ObjC and C++
52 objcp-warn = $(STRICT_WARN) -DOBJCPLUS -I$(srcdir)/objc -I$(srcdir)/cp
54 # Language-specific object files for Objective C++.
55 OBJCXX_OBJS = objcp/objcp-act.o objcp/objcp-lang.o objcp/objcp-decl.o \
56 objcp/objc-runtime-shared-support.o \
57 objcp/objc-gnu-runtime-abi-01.o \
58 objcp/objc-next-runtime-abi-01.o \
59 objcp/objc-next-runtime-abi-02.o \
60 objcp/objc-encoding.o \
62 $(CXX_AND_OBJCXX_OBJS)
64 obj-c++_OBJS = $(OBJCXX_OBJS) cc1objplus-checksum.o
66 cc1objplus-checksum.c : build/genchecksum$(build_exeext) checksum-options \
67 $(OBJCXX_OBJS) $(BACKEND) $(LIBDEPS)
68 build/genchecksum$(build_exeext) $(OBJCXX_OBJS) $(BACKEND) \
69 $(LIBDEPS) checksum-options > cc1objplus-checksum.c.tmp && \
70 $(srcdir)/../move-if-change cc1objplus-checksum.c.tmp \
73 cc1objplus-checksum.o : cc1objplus-checksum.c $(CONFIG_H) $(SYSTEM_H)
75 cc1objplus$(exeext): $(OBJCXX_OBJS) cc1objplus-checksum.o $(BACKEND) $(LIBDEPS)
76 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
77 $(OBJCXX_OBJS) cc1objplus-checksum.o $(BACKEND) $(LIBS) $(BACKENDLIBS)
79 # Objective C++ language specific files.
81 objcp/objcp-lang.o : objcp/objcp-lang.c \
84 $(C_COMMON_H) $(LANGHOOKS_DEF_H) cp/cp-objcp-common.h \
85 $(TARGET_H) gtype-objcp.h
87 objcp/objcp-decl.o : objcp/objcp-decl.c \
88 $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(CXX_TREE_H) \
89 objc/objc-act.h c-family/c-objc.h \
92 objcp/objc-runtime-shared-support.o : objc/objc-runtime-shared-support.c \
93 gt-objc-objc-runtime-shared-support.h \
95 $(GGC_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) input.h \
96 objc/objc-encoding.h \
97 objc/objc-next-metadata-tags.h \
98 objc/objc-runtime-shared-support.h \
100 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
103 objcp/objc-gnu-runtime-abi-01.o: objc/objc-gnu-runtime-abi-01.c \
104 gt-objc-objc-gnu-runtime-abi-01.h \
106 $(GGC_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) input.h \
108 objc/objc-encoding.h \
109 objc/objc-runtime-hooks.h \
110 objc/objc-runtime-shared-support.h \
112 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
115 objcp/objc-next-runtime-abi-01.o: objc/objc-next-runtime-abi-01.c \
116 gt-objc-objc-next-runtime-abi-01.h \
118 $(GGC_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) input.h \
119 $(TARGET_H) output.h \
120 objc/objc-encoding.h \
121 objc/objc-next-metadata-tags.h \
122 objc/objc-runtime-hooks.h \
123 objc/objc-runtime-shared-support.h \
125 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
128 objcp/objc-next-runtime-abi-02.o: objc/objc-next-runtime-abi-02.c \
129 gt-objc-objc-next-runtime-abi-02.h \
131 $(GGC_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) input.h \
133 objc/objc-encoding.h \
134 objc/objc-next-metadata-tags.h \
135 objc/objc-runtime-hooks.h \
136 objc/objc-runtime-shared-support.h \
138 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
142 # The following must be an explicit rule; please keep in sync with the implicit
143 # one in Makefile.in.
144 objcp/objcp-act.o : objc/objc-act.c \
147 $(GGC_H) $(DIAGNOSTIC_H) $(FLAGS_H) input.h \
148 toplev.h $(FUNCTION_H) output.h debug.h $(LANGHOOKS_DEF_H) \
149 $(HASHTAB_H) $(GIMPLE_H) \
150 $(RTL_H) $(EXPR_H) $(TARGET_H) \
152 objc/objc-encoding.h \
154 objc/objc-runtime-hooks.h \
155 objc/objc-runtime-shared-support.h \
157 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
160 objcp/objc-encoding.o : objc/objc-encoding.c \
162 $(GGC_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) input.h \
164 objc/objc-encoding.h \
165 objc/objc-runtime-shared-support.h \
167 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
170 objcp/objc-map.o : objc/objc-map.c \
172 $(GGC_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) input.h \
175 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
187 obj-c++.install-info:
192 obj-c++.install-html:
196 obj-c++.install-plugin:
199 cd $(srcdir)/objcp; etags -o TAGS.sub *.c *.h; \
200 etags --include TAGS.sub --include ../TAGS.sub
202 lang_checks += check-obj-c++
206 # cc1objplus is installed elsewhere as part of $(COMPILERS).
208 obj-c++.install-common:
215 # A lot of the ancillary files are deleted by the main makefile.
216 # We just have to delete files specific to us.
218 -rm -f objcp/*$(objext)
219 -rm -f objcp/*$(coverageexts)
220 obj-c++.clean: obj-c++.mostlyclean
222 -rm -f objcp/config.status objcp/Makefile
223 obj-c++.maintainer-clean:
228 obj-c++.stage1: stage1-start
229 -mv objcp/*$(objext) stage1/objcp
230 obj-c++.stage2: stage2-start
231 -mv objcp/*$(objext) stage2/objcp
232 obj-c++.stage3: stage3-start
233 -mv objcp/*$(objext) stage3/objcp
234 obj-c++.stage4: stage4-start
235 -mv objcp/*$(objext) stage4/objcp
236 obj-c++.stageprofile: stageprofile-start
237 -mv objcp/*$(objext) stageprofile/objcp
238 obj-c++.stagefeedback: stagefeedback-start
239 -mv objcp/*$(objext) stagefeedback/objcp