ipa/97673 - fix input_location leak
[gcc.git] / gcc / objc / Make-lang.in
1 # Top level -*- makefile -*- fragment for GNU Objective-C
2 # Copyright (C) 1997-2021 Free Software Foundation, Inc.
3
4 #This file is part of GCC.
5
6 #GCC is free software; you can redistribute it and/or modify
7 #it under the terms of the GNU General Public License as published by
8 #the Free Software Foundation; either version 3, or (at your option)
9 #any later version.
10
11 #GCC is distributed in the hope that it will be useful,
12 #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 #GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GCC; see the file COPYING3. If not see
18 # <http://www.gnu.org/licenses/>.
19
20
21 # This file provides the language dependent support in the main Makefile.
22 # Each language makefile fragment must provide the following targets:
23 #
24 # foo.all.cross, foo.start.encap, foo.rest.encap,
25 # foo.install-common, foo.install-man, foo.install-info, foo.install-pdf,
26 # foo.install-html, foo.info, foo.dvi, foo.pdf, foo.html, foo.uninstall,
27 # foo.mostlyclean, foo.clean, foo.distclean,
28 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
29 #
30 # where `foo' is the name of the language.
31 #
32 # It should also provide rules for:
33 #
34 # - making any compiler driver (eg: g++)
35 # - the compiler proper (eg: cc1plus)
36 # - define the names for selecting the language in LANGUAGES.
37
38 #\f
39 # Define the names for selecting Objective-C in LANGUAGES.
40 objc: cc1obj$(exeext)
41 objc.serial = cc1obj$(exeext)
42
43 # Tell GNU make to ignore these if they exist.
44 .PHONY: objc
45
46 # Use maximal warnings for this front end.
47 objc-warn = $(STRICT_WARN)
48
49 # Language-specific object files for Objective C.
50 OBJC_OBJS = objc/objc-lang.o objc/objc-act.o hash-table.o \
51 objc/objc-runtime-shared-support.o \
52 objc/objc-gnu-runtime-abi-01.o \
53 objc/objc-next-runtime-abi-01.o \
54 objc/objc-next-runtime-abi-02.o \
55 objc/objc-encoding.o \
56 objc/objc-map.o
57
58 objc_OBJS = $(OBJC_OBJS) cc1obj-checksum.o
59
60 cc1obj-checksum.c : build/genchecksum$(build_exeext) checksum-options \
61 $(OBJC_OBJS) $(C_AND_OBJC_OBJS) $(BACKEND) $(LIBDEPS)
62 build/genchecksum$(build_exeext) $(OBJC_OBJS) $(C_AND_OBJC_OBJS) \
63 $(BACKEND) $(LIBDEPS) checksum-options > cc1obj-checksum.c.tmp && \
64 $(srcdir)/../move-if-change cc1obj-checksum.c.tmp cc1obj-checksum.c
65
66 cc1obj$(exeext): $(OBJC_OBJS) $(C_AND_OBJC_OBJS) cc1obj-checksum.o $(BACKEND) \
67 $(LIBDEPS) $(objc.prev)
68 @$(call LINK_PROGRESS,$(INDEX.objc),start)
69 +$(LLINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
70 $(OBJC_OBJS) $(C_AND_OBJC_OBJS) cc1obj-checksum.o \
71 $(BACKEND) $(LIBS) $(BACKENDLIBS)
72 @$(call LINK_PROGRESS,$(INDEX.objc),end)
73
74 objc.srcextra:
75
76 #\f
77 # Build hooks:
78
79 objc.all.cross:
80 objc.start.encap:
81 objc.rest.encap:
82 objc.info:
83 objc.install-info:
84 objc.dvi:
85 objc.pdf:
86 objc.install-pdf:
87 objc.html:
88 objc.install-html:
89 objc.man:
90 objc.srcinfo:
91 objc.srcman:
92 objc.install-plugin:
93
94 objc.tags: force
95 cd $(srcdir)/objc; etags -o TAGS.sub *.c *.h; \
96 etags --include TAGS.sub --include ../TAGS.sub
97
98 lang_checks += check-objc
99
100 # The following allows you to do 'make check-objc -j2'. The
101 # execute.exp tests will be run in parallel with all the other ones.
102 lang_checks_parallelized += check-objc
103 check_objc_parallelize = 6
104
105 # No objc-c-specific selftests
106 selftest-objc:
107
108 #\f
109 # Install hooks:
110 # cc1obj is installed elsewhere as part of $(COMPILERS).
111
112 objc.install-common:
113
114 objc.install-man:
115
116 objc.uninstall:
117 #\f
118 # Clean hooks:
119 # A lot of the ancillary files are deleted by the main makefile.
120 # We just have to delete files specific to us.
121 objc.mostlyclean:
122 -rm -f objc/*$(objext) objc/xforward objc/fflags
123 -rm -f objc/*$(coverageexts)
124 -rm -f cc1obj$(exeext)
125 objc.clean: objc.mostlyclean
126 -rm -rf objc-headers
127 objc.distclean:
128 -rm -f objc/Makefile objc/Make-host objc/Make-target
129 -rm -f objc/config.status objc/config.cache
130 objc.maintainer-clean:
131
132 #\f
133 # Stage hooks:
134
135 objc.stage1: stage1-start
136 -mv objc/*$(objext) stage1/objc
137 objc.stage2: stage2-start
138 -mv objc/*$(objext) stage2/objc
139 objc.stage3: stage3-start
140 -mv objc/*$(objext) stage3/objc
141 objc.stage4: stage4-start
142 -mv objc/*$(objext) stage4/objc
143 objc.stageprofile: stageprofile-start
144 -mv objc/*$(objext) stageprofile/objc
145 objc.stagefeedback: stagefeedback-start
146 -mv objc/*$(objext) stagefeedback/objc