]>
Commit | Line | Data |
---|---|---|
ce4d59e2 | 1 | # Makefile for the GNU linker ld (version 2) |
12fa72d4 | 2 | # Copyright (C) 1989-1992 Free Software Foundation, Inc. |
ce4d59e2 SC |
3 | |
4 | # This file is part of GNU ld.. | |
5 | ||
6 | # This program 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 2 of the License, or | |
9 | # (at your option) any later version. | |
10 | # | |
11 | # This program 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 this program; if not, write to the Free Software | |
18 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
19 | ||
eb02fd64 RP |
20 | |
21 | srcdir = . | |
22 | ||
e06ba18d PB |
23 | prefix = /usr/local |
24 | ||
0bb95ac8 | 25 | program_transform_name = |
12fa72d4 SC |
26 | exec_prefix = $(prefix) |
27 | bindir = $(exec_prefix)/bin | |
28 | libdir = $(exec_prefix)/lib | |
56409445 | 29 | tooldir = $(bindir)/$(target_alias) |
e06ba18d | 30 | datadir = $(prefix)/lib |
12fa72d4 | 31 | mandir = $(prefix)/man |
e06ba18d PB |
32 | man1dir = $(mandir)/man1 |
33 | man2dir = $(mandir)/man2 | |
34 | man3dir = $(mandir)/man3 | |
35 | man4dir = $(mandir)/man4 | |
36 | man5dir = $(mandir)/man5 | |
37 | man6dir = $(mandir)/man6 | |
38 | man7dir = $(mandir)/man7 | |
39 | man8dir = $(mandir)/man8 | |
40 | man9dir = $(mandir)/man9 | |
12fa72d4 | 41 | infodir = $(prefix)/info |
e06ba18d PB |
42 | includedir = $(prefix)/include |
43 | docdir = $(datadir)/doc | |
44 | ||
2cbe4c5f HS |
45 | gcclibdir = $(libdir)/gcc/$(target_alias) |
46 | ||
e06ba18d PB |
47 | SHELL = /bin/sh |
48 | ||
49 | INSTALL = install -c | |
50 | INSTALL_PROGRAM = $(INSTALL) | |
51 | INSTALL_DATA = $(INSTALL) | |
e06ba18d PB |
52 | AR = ar |
53 | AR_FLAGS = qv | |
77b19d3d | 54 | CFLAGS = -g |
e06ba18d PB |
55 | MAKEINFO = makeinfo |
56 | RANLIB = ranlib | |
5ff21fa5 | 57 | HOST_CC=$(CC) |
bf3acf44 | 58 | BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` |
2df68136 | 59 | LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` |
8c32cf6e | 60 | |
12fa72d4 | 61 | #version=/`./../gcc/gcc -dumpversion` |
092df318 | 62 | version= |
8c32cf6e | 63 | |
ee17cac9 PB |
64 | # Seach path to override the default search path for -lfoo libraries. |
65 | # If LIB_PATH is empty, the ones in the script (if any) are left alone. | |
917bffa7 PB |
66 | # (The default is usually /lib:usr/lib:/usr/local/lib, unless building |
67 | # a cross-linker, in which case the default is empty. See genscripts.sh.) | |
ee17cac9 PB |
68 | # Otherwise, they are replaced with the ones given in LIB_PATH, |
69 | # which may have the form: LIB_PATH=/lib:/usr/local/lib | |
70 | LIB_PATH = | |
71 | ||
2ee11735 | 72 | BASEDIR = ../.. |
d6e467b4 | 73 | INCLUDE = $(srcdir)/../include |
2ee11735 | 74 | INCLUDES = -I. -I$(srcdir) -I$(INCLUDE) |
2ee11735 | 75 | |
8073190b | 76 | # Where to find texinfo.tex to format docn with TeX |
8d317d2a RP |
77 | TEXIDIR = $(srcdir)/../texinfo/fsf |
78 | ||
10a69a37 | 79 | # Whether to get roff to put indexing entries on stderr |
954ac2ea RP |
80 | TEXI2OPT = |
81 | # You neeed this to generate ld-index.ms (or .mm or .me) | |
82 | # TEXI2OPT = -i | |
8073190b | 83 | |
e06ba18d PB |
84 | TEXI2ROFF=texi2roff |
85 | ||
8073190b RP |
86 | # Which roff program to use to generate index for texi2roff'd doc |
87 | ROFF = groff | |
88 | ||
5cdea2ac SC |
89 | #stuff for self hosting (can be overridden in config file). |
90 | HOSTING_CRT0=/lib/crt0.o | |
91 | HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else echo $(libdir)/libgcc.a; fi` -lc | |
92 | HOSTING_EMU=LDEMULATION=$(EMUL); export LDEMULATION | |
93 | ||
917bffa7 PB |
94 | C++ = g++ -fgnu-linker |
95 | ||
7e5c1057 | 96 | ### Host, target, and site specific Makefile fragments come in here. |
2ee11735 RP |
97 | ### |
98 | ||
2ee11735 RP |
99 | LINTFLAGS = $(INCLUDES) $(EXTRA_DEF) |
100 | ||
917bffa7 | 101 | .SUFFIXES: .y .x .xr .xu .xn .xbn .sc .scu .scr .scn $(SUFFIXES) .cc |
2ee11735 | 102 | |
77b19d3d RP |
103 | .c.o: |
104 | $(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $< | |
105 | ||
917bffa7 PB |
106 | .cc.o: |
107 | $(C++) -c $(CFLAGS) -I$(srcdir) $< | |
108 | ||
eb02fd64 RP |
109 | # go directly to ld.new in case this ld isn't capable of |
110 | # linking native object on this host. It can be renamed on | |
111 | # install. | |
e7921bd4 | 112 | LD_PROG = ld.new |
f78e2569 | 113 | |
eb02fd64 | 114 | # for self hosting |
12fa72d4 SC |
115 | BFDLIB=./../bfd/libbfd.a |
116 | LIBIBERTY=./../libiberty/libiberty.a | |
eb02fd64 | 117 | |
ab57b174 ILT |
118 | ALL_EMULATIONS=em_lnk960.o em_sun3.o em_i386aout.o em_go32.o \ |
119 | em_m88kbcs.o em_a29k.o em_news.o em_hp300bsd.o \ | |
120 | em_h8300hms.o em_ebmon29k.o em_sun4.o em_gld960.o \ | |
121 | em_m68kcoff.o em_h8300xray.o em_st2000.o em_sa29200.o \ | |
99e6298a | 122 | em_vanilla.o em_i386coff.o |
7e5c1057 PB |
123 | |
124 | EMULATION_OFILES=${ALL_EMULATIONS} | |
ab57b174 | 125 | #EMULATION_OFILES=em_${EMUL}.o ${OTHER_EMULATIONS} |
7e5c1057 | 126 | |
119afd7b | 127 | OFILES= ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldindr.o \ |
7e5c1057 | 128 | ldwarn.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldsym.o \ |
fc60e4f7 | 129 | ldfile.o relax.o lderror.o ${EMULATION_OFILES} |
eb02fd64 | 130 | |
ce4d59e2 SC |
131 | HEADERS=config.h ldmain.h ldmain.h ldwarn.h ldmisc.h ldindr.h \ |
132 | ldsym.h ldctor.h ldlang.h ldexp.h \ | |
239d28f3 | 133 | ldlex.h ldwrite.h ldver.h ldemul.h ldfile.h ldgram.h ld.h |
eb02fd64 RP |
134 | |
135 | MANSOURCES=ld.tex | |
136 | ||
119afd7b | 137 | LDCSOURCES=ldlang.c lexsup.c ldctor.c mri.c ldindr.c ldmain.c ldwrite.c ldwarn.c ldlnk960.c \ |
ab57b174 | 138 | em_gld.c em_sun3.c em_go32.c em_m88k.c em_ebmon29k.c \ |
2e2bf962 | 139 | ldgld960.c ldemul.c ldver.c ldmisc.c ldexp.c ldsym.c ldfile.c \ |
fc60e4f7 | 140 | relax.c lderror.c |
eb02fd64 | 141 | |
ab57b174 | 142 | GENERATED_SOURCES=ldgram.c ldlex.c em_*.c ldemul-list.h |
7e5c1057 | 143 | GENERATED_HEADERS=ldgram.h ldemul-list.h |
eb02fd64 | 144 | |
cc964c6f | 145 | LDSOURCES=$(LDCSOURCES) ldgram.y ldlex.l ldgram.h |
eb02fd64 | 146 | |
2ee11735 | 147 | BFDSOURCES=../../bfd/common/*.c |
eb02fd64 RP |
148 | |
149 | SOURCES= $(LDSOURCES) $(BFDSOURCES) | |
150 | LINTSOURCES= $(LDCSOURCES) $(BFDSOURCES) $(GENERATED_SOURCES) | |
151 | ||
ab57b174 | 152 | STAGESTUFF = *.x *.x[runN] *.sc[runN] $(GENERATED_SOURCES) $(GENERATED_HEADERS) $(OFILES) mkscript |
2ee11735 | 153 | |
e06ba18d PB |
154 | all: Makefile $(LD_PROG) |
155 | ||
917bffa7 | 156 | check: bootstrap check-cdtest |
e06ba18d | 157 | info: ld.info |
2ee11735 | 158 | |
4976e6ab | 159 | ldgram.h ldgram.c: ldgram.y |
5ff21fa5 | 160 | $(BISON) $(BISONFLAGS) -d $(srcdir)/ldgram.y |
31e54f5d RP |
161 | mv -f y.tab.c ldgram.c |
162 | mv -f y.tab.h ldgram.h | |
cc964c6f | 163 | |
d20fb445 | 164 | ldmain.o: ldmain.c |
77b19d3d | 165 | $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) -DDEFAULT_EMULATION='"$(EMUL)"' -c $< |
7e5c1057 PB |
166 | |
167 | ldemul-list.h: Makefile | |
168 | (echo "/* This file is automatically generated. DO NOT EDIT! */";\ | |
169 | for f in `echo " " ${EMULATION_OFILES} "" \ | |
ab57b174 | 170 | | sed -e 's/em_/ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \ |
7e5c1057 PB |
171 | echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \ |
172 | done;\ | |
173 | echo "";\ | |
174 | echo "#define EMULATION_LIST \\";\ | |
175 | for f in `echo " " ${EMULATION_OFILES} "" \ | |
ab57b174 | 176 | | sed -e 's/em_/ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \ |
7e5c1057 PB |
177 | echo " &ld_$${f}_emulation, \\"; \ |
178 | done;\ | |
179 | echo " 0") >ldemul-list.h | |
180 | ||
181 | ldemul.o: ldemul-list.h | |
d20fb445 | 182 | |
4976e6ab | 183 | ldlex.c: ldlex.l |
5ff21fa5 PB |
184 | $(LEX) -I -Cem $(srcdir)/ldlex.l |
185 | mv lex.yy.c ldlex.c | |
19b03b7a | 186 | |
ab57b174 | 187 | # These all start with em_ so 'make clean' can find them. |
c61b4184 | 188 | |
7e5c1057 PB |
189 | GENSCRIPTS=sh $(srcdir)/genscripts.sh ${srcdir} ${host_alias} ${target_alias} |
190 | GEN_DEPENDS=./mkscript $(srcdir)/genscripts.sh | |
191 | ||
ab57b174 | 192 | em_sun4.c: $(srcdir)/sun4.sh \ |
7e5c1057 PB |
193 | $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} |
194 | ${GENSCRIPTS} sun4.sh | |
ab57b174 | 195 | em_sun3.c: $(srcdir)/sun3.sh \ |
7e5c1057 PB |
196 | $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} |
197 | ${GENSCRIPTS} sun3.sh | |
ab57b174 | 198 | em_go32.c: $(srcdir)/go32.sh \ |
9d1fe8a4 SC |
199 | $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} |
200 | ${GENSCRIPTS} go32.sh | |
ab57b174 | 201 | em_news.c: $(srcdir)/news.sh \ |
7e5c1057 PB |
202 | $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} |
203 | ${GENSCRIPTS} news.sh | |
ab57b174 | 204 | em_hp300bsd.c: $(srcdir)/hp300bsd.sh \ |
1584d069 PB |
205 | $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} |
206 | ${GENSCRIPTS} hp300bsd.sh | |
ab57b174 | 207 | em_i386aout.c: $(srcdir)/i386aout.sh \ |
7e5c1057 PB |
208 | $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} |
209 | ${GENSCRIPTS} i386aout.sh | |
ab57b174 | 210 | em_ebmon29k.c: $(srcdir)/ebmon29k.sh \ |
7e5c1057 PB |
211 | $(srcdir)/generic.em $(srcdir)/ebmon29k.sc-sh ${GEN_DEPENDS} |
212 | ${GENSCRIPTS} ebmon29k.sh | |
ab57b174 | 213 | em_sa29200.c: $(srcdir)/sa29200.sh \ |
fe3e4dfc SC |
214 | $(srcdir)/generic.em $(srcdir)/sa29200.sc-sh ${GEN_DEPENDS} |
215 | ${GENSCRIPTS} sa29200.sh | |
ab57b174 | 216 | em_a29k.c: $(srcdir)/a29k.sh \ |
7e5c1057 PB |
217 | $(srcdir)/generic.em $(srcdir)/a29k.sc-sh ${GEN_DEPENDS} |
218 | ${GENSCRIPTS} a29k.sh | |
ab57b174 | 219 | em_m88kbcs.c: $(srcdir)/m88kbcs.sh \ |
7e5c1057 PB |
220 | $(srcdir)/generic.em $(srcdir)/h8300hms.sc-sh ${GEN_DEPENDS} |
221 | ${GENSCRIPTS} m88kbcs.sh | |
ab57b174 | 222 | em_h8300hms.c: $(srcdir)/h8300hms.sh \ |
7e5c1057 PB |
223 | $(srcdir)/h8300hms.em $(srcdir)/h8300hms.sc-sh ${GEN_DEPENDS} |
224 | ${GENSCRIPTS} h8300hms.sh | |
ab57b174 | 225 | em_h8300xray.c: $(srcdir)/h8300xray.sh \ |
9d1fe8a4 SC |
226 | $(srcdir)/h8300xray.em $(srcdir)/h8300xray.sc-sh ${GEN_DEPENDS} |
227 | ${GENSCRIPTS} h8300xray.sh | |
ab57b174 | 228 | em_st2000.c: $(srcdir)/st2000.sh \ |
119afd7b RP |
229 | $(srcdir)/st2000.em $(srcdir)/st2000.sc-sh ${GEN_DEPENDS} |
230 | ${GENSCRIPTS} st2000.sh | |
ab57b174 | 231 | em_vanilla.c: $(srcdir)/vanilla.sh \ |
7e5c1057 PB |
232 | $(srcdir)/vanilla.em $(srcdir)/vanilla.sc-sh ${GEN_DEPENDS} |
233 | ${GENSCRIPTS} vanilla.sh | |
ab57b174 | 234 | em_lnk960.c: $(srcdir)/lnk960.sh \ |
7e5c1057 PB |
235 | $(srcdir)/lnk960.em $(srcdir)/i960.sc-sh ${GEN_DEPENDS} |
236 | ${GENSCRIPTS} lnk960.sh | |
ab57b174 | 237 | em_gld960.c: $(srcdir)/gld960.sh \ |
7e5c1057 PB |
238 | $(srcdir)/gld960.em $(srcdir)/i960.sc-sh ${GEN_DEPENDS} |
239 | ${GENSCRIPTS} gld960.sh | |
ab57b174 ILT |
240 | em_m68kcoff.c: $(srcdir)/m68kcoff.sh \ |
241 | $(srcdir)/generic.em $(srcdir)/m68kcoff.sc-sh ${GEN_DEPENDS} | |
242 | ${GENSCRIPTS} m68kcoff.sh | |
99e6298a SC |
243 | em_i386coff.c: $(srcdir)/i386coff.sh \ |
244 | $(srcdir)/generic.em $(srcdir)/i386coff.sc-sh ${GEN_DEPENDS} | |
245 | ${GENSCRIPTS} i386coff.sh | |
eb02fd64 | 246 | |
e77463a1 | 247 | $(LD_PROG): $(OFILES) $(BFDLIB) $(LIBIBERTY) |
77b19d3d | 248 | $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(LOADLIBES) |
e7921bd4 | 249 | |
7e5c1057 | 250 | # Rules for testing by relinking ld itself. |
eb02fd64 | 251 | |
7e5c1057 PB |
252 | ld-partial.o: ld.new |
253 | $(HOSTING_EMU); ./ld.new -o ld-partial.o -r $(OFILES) | |
254 | ld1: ld-partial.o | |
255 | $(HOSTING_EMU); ./ld.new -o ld1 $(HOSTING_CRT0) ld-partial.o $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) | |
eb02fd64 | 256 | |
7e5c1057 PB |
257 | ld1-full: ld.new |
258 | $(HOSTING_EMU); ./ld.new -o ld1-full $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) | |
eb02fd64 | 259 | |
d20fb445 SC |
260 | ld2: ld1 |
261 | $(HOSTING_EMU); ./ld1 -o ld2 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) | |
60048a2c | 262 | |
eb02fd64 | 263 | ld3: ld2 |
e77463a1 | 264 | $(HOSTING_EMU); ./ld2 -o ld3 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) |
eb02fd64 | 265 | |
d20fb445 SC |
266 | bootstrap: ld3 |
267 | cmp ld2 ld3 | |
268 | ||
917bffa7 PB |
269 | cdtest: cdtest-main.o cdtest-func.o cdtest-foo.o |
270 | $(HOSTING_EMU); ./ld.new -o cdtest $(HOSTING_CRT0) \ | |
271 | cdtest-main.o cdtest-func.o cdtest-foo.o $(HOSTING_LIBS) | |
272 | ||
273 | check-cdtest: cdtest $(srcdir)/cdtest.exp | |
274 | ./cdtest >cdtest.out | |
275 | diff $(srcdir)/cdtest.exp cdtest.out | |
276 | ||
8073190b RP |
277 | ###################################################################### |
278 | # DOCUMENTATION TARGETS | |
279 | # TeX output | |
9c7810d6 RP |
280 | ld.dvi: $(srcdir)/ld.texinfo |
281 | TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex $(srcdir)/ld.texinfo | |
8d317d2a | 282 | texindex ld.?? |
9c7810d6 | 283 | TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex $(srcdir)/ld.texinfo |
4b91c519 PB |
284 | ldint.dvi: $(srcdir)/ldint.texinfo |
285 | TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex $(srcdir)/ldint.texinfo | |
286 | texindex ldint.?? | |
287 | TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex $(srcdir)/ldint.texinfo | |
8d317d2a | 288 | |
8073190b | 289 | # info file for online browsing |
9c7810d6 | 290 | ld.info: $(srcdir)/ld.texinfo |
e06ba18d | 291 | $(MAKEINFO) -o ld.info $(srcdir)/ld.texinfo |
eb02fd64 | 292 | |
4b91c519 PB |
293 | ldint.info: $(srcdir)/ldint.texinfo |
294 | $(MAKEINFO) -o ldint.info $(srcdir)/ldint.texinfo | |
295 | ||
954ac2ea | 296 | #separate targets for "ms", "me", and "mm" forms of roff doc |
e06ba18d PB |
297 | # Try to use a recent texi2roff. v2 was put on prep in jan91. |
298 | # If you want an index, see texi2roff doc for postprocessing | |
299 | # and add -i to texi2roff invocations below. | |
300 | # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete | |
301 | # correspondint -e lines when later texi2roff's are current) | |
302 | # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs. | |
303 | # + @c's deleted explicitly because texi2roff sees texinfo commands in them | |
304 | # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank | |
305 | # + @alphaenumerate is ridiculously new, turned into @enumerate | |
306 | ||
9c7810d6 | 307 | ld.ms: $(srcdir)/ld.texinfo |
8073190b RP |
308 | sed -e '/\\input texinfo/d' \ |
309 | -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ | |
e06ba18d PB |
310 | -e '/^@ifinfo/,/^@end ifinfo/d' \ |
311 | -e '/^@c/d' \ | |
312 | -e 's/{.*,,/{/' \ | |
313 | -e 's/@ / /g' \ | |
314 | -e 's/^@alphaenumerate/@enumerate/g' \ | |
315 | -e 's/^@end alphaenumerate/@end enumerate/g' \ | |
9c7810d6 | 316 | $(srcdir)/ld.texinfo | \ |
e06ba18d PB |
317 | $(TEXI2ROFF) $(TEXI2OPT) -ms | \ |
318 | sed -e 's/---/\\(em/g' \ | |
319 | >>ld.ms | |
8073190b RP |
320 | |
321 | # index for roff output | |
322 | ld-index.ms: ld.ms | |
323 | $(ROFF) -ms ld.ms 2>&1 1>/dev/null | \ | |
324 | sed -e '/: warning:/d' | \ | |
325 | texi2index >ld-index.ms | |
326 | ||
954ac2ea | 327 | # roff output (-mm) |
9c7810d6 | 328 | ld.mm: $(srcdir)/ld.texinfo |
954ac2ea RP |
329 | sed -e '/\\input texinfo/d' \ |
330 | -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ | |
e06ba18d PB |
331 | -e '/^@ifinfo/,/^@end ifinfo/d' \ |
332 | -e '/^@c/d' \ | |
9c7810d6 RP |
333 | -e 's/{.*,,/{/' \ |
334 | -e '/@noindent/d' \ | |
e06ba18d PB |
335 | -e 's/@ / /g' \ |
336 | -e 's/^@alphaenumerate/@enumerate/g' \ | |
337 | -e 's/^@end alphaenumerate/@end enumerate/g' \ | |
9c7810d6 | 338 | $(srcdir)/ld.texinfo | \ |
e06ba18d | 339 | $(TEXI2ROFF) $(TEXI2OPT) -mm | \ |
9c7810d6 RP |
340 | sed -e 's/---/\\(em/g' \ |
341 | >ld.mm | |
954ac2ea RP |
342 | |
343 | # index for roff output | |
344 | ld-index.mm: ld.mm | |
345 | $(ROFF) -mm ld.mm 2>&1 1>/dev/null | \ | |
346 | sed -e '/: warning:/d' | \ | |
347 | texi2index >ld-index.mm | |
348 | ||
349 | # roff output (-me) | |
9c7810d6 | 350 | ld.me: $(srcdir)/ld.texinfo |
954ac2ea RP |
351 | sed -e '/\\input texinfo/d' \ |
352 | -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ | |
e06ba18d PB |
353 | -e '/^@ifinfo/,/^@end ifinfo/d' \ |
354 | -e '/^@c/d' \ | |
355 | -e 's/{.*,,/{/' \ | |
356 | -e 's/@ / /g' \ | |
357 | -e 's/^@alphaenumerate/@enumerate/g' \ | |
358 | -e 's/^@end alphaenumerate/@end enumerate/g' \ | |
9c7810d6 | 359 | $(srcdir)/ld.texinfo | \ |
e06ba18d PB |
360 | $(TEXI2ROFF) $(TEXI2OPT) -me | \ |
361 | sed -e 's/---/\\(em/g' \ | |
362 | >>ld.me | |
954ac2ea RP |
363 | |
364 | # index for roff output | |
365 | ld-index.me: ld.me | |
366 | $(ROFF) -me ld.me 2>&1 1>/dev/null | \ | |
367 | sed -e '/: warning:/d' | \ | |
368 | texi2index >ld-index.me | |
369 | ||
370 | ||
8073190b RP |
371 | ###################################################################### |
372 | ||
12fa72d4 | 373 | ./mkscript: $(srcdir)/mkscript.c |
ab57b174 | 374 | $(HOST_CC) -o mkscript $(srcdir)/mkscript.c |
f78e2569 | 375 | |
cc964c6f SC |
376 | ldlex.c: ldlex.l ldgram.h |
377 | ldlex.o: ldlex.c ldgram.h | |
378 | ldgram.o: ldgram.c | |
379 | ldgram.c:ldgram.y | |
eb02fd64 | 380 | |
7e5c1057 | 381 | h8300hms.o:h8300hms.c |
9d1fe8a4 | 382 | h8300xray.o:h8300xray.c |
119afd7b | 383 | st2000.o:st2000.c |
565a4c76 | 384 | |
e7921bd4 | 385 | stage1: force |
e06ba18d | 386 | -mkdir stage1 |
ab57b174 | 387 | -mv -f $(STAGESTUFF) $(LD_PROG) stage1 |
e06ba18d | 388 | -(cd stage1 ; ln -s $(LD_PROG) ld) |
f78e2569 | 389 | |
e7921bd4 | 390 | stage2: force |
e06ba18d | 391 | -mkdir stage2 |
ab57b174 | 392 | -mv -f $(STAGESTUFF) $(LD_PROG) stage2 |
e06ba18d | 393 | -(cd stage2 ; ln -s $(LD_PROG) ld) |
f78e2569 | 394 | |
e7921bd4 | 395 | stage3: force |
e06ba18d | 396 | -mkdir stage3 |
ab57b174 | 397 | -mv -f $(STAGESTUFF) $(LD_PROG) stage3 |
e06ba18d | 398 | -(cd stage3 ; ln -s $(LD_PROG) ld) |
eb02fd64 | 399 | |
e46cdcdd RP |
400 | against=stage2 |
401 | ||
402 | comparison: force | |
ab57b174 | 403 | for i in $(STAGESTUFF) $(LD_PROG) ; do cmp $$i $(against)/$$i ; done |
e46cdcdd | 404 | |
e7921bd4 | 405 | de-stage1: force |
e06ba18d PB |
406 | -(cd stage1 ; mv -f * ..) |
407 | -rm ld | |
408 | -rmdir stage1 | |
e7921bd4 RP |
409 | |
410 | de-stage2: force | |
e06ba18d PB |
411 | -(cd stage2 ; mv -f * ..) |
412 | -rm ld | |
413 | -rmdir stage2 | |
e7921bd4 RP |
414 | |
415 | de-stage3: force | |
e06ba18d PB |
416 | -(cd stage3 ; mv -f * ..) |
417 | -rm ld | |
418 | -rmdir stage3 | |
e7921bd4 | 419 | |
ab57b174 ILT |
420 | # Stuff that should be included in a distribution: |
421 | LDDISTSTUFF=ldgram.c ldgram.h ldlex.c ld.mm | |
422 | diststuff: $(LDDISTSTUFF) | |
423 | ||
424 | mostlyclean: | |
425 | -rm -f $(STAGESTUFF) ld.?? ld.??? ldlex.[qp] | |
917bffa7 | 426 | -rm -f ld ld1 ld2 ld3 *.o y.output cdtest cdtest.out |
ab57b174 ILT |
427 | clean: mostlyclean |
428 | -rm -f $(LD_PROG) | |
429 | distclean: clean | |
430 | -rm -f Makefile config.status TAGS | |
431 | realclean: distclean | |
432 | -rm -f $(LDDISTSTUFF) | |
eb02fd64 RP |
433 | |
434 | lintlog:$(SOURCES) Makefile | |
2ee11735 | 435 | $(LINT) -abhxzn $(LINTFLAGS) $(LINTSOURCES) \ |
eb02fd64 RP |
436 | | grep -v "pointer casts may be troublesome" \ |
437 | | grep -v "possible pointer alignment problem" \ | |
438 | | grep -v "ignore" \ | |
439 | | grep -v "conversion from long may lose accuracy" \ | |
440 | | grep -v "warning: constant argument to NOT" \ | |
441 | | grep -v "enumeration type clash, operator CAST" \ | |
442 | | grep -v "warning: constant in conditional context"\ | |
443 | | grep -v "archive\.c" | |
444 | ||
445 | ||
446 | tags TAGS:$(SOURCES) $(HEADERS) | |
19b03b7a | 447 | etags -t $? |
eb02fd64 | 448 | |
eb02fd64 RP |
449 | |
450 | objdump:objdump.c | |
451 | ||
12fa72d4 | 452 | .PHONY: install |
e7921bd4 | 453 | install: $(LD_PROG) |
b189e892 ILT |
454 | -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \ |
455 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi | |
456 | -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi | |
457 | -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \ | |
458 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi | |
459 | -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi | |
0bb95ac8 ILT |
460 | -n=`t='$(program_transform_name)'; echo ld | sed -e "" $$t`; \ |
461 | rm -f $(bindir)/$$n; \ | |
462 | $(INSTALL_PROGRAM) ld.new $(bindir)/$$n; \ | |
56409445 ILT |
463 | $(INSTALL_DATA) $(srcdir)/ld.1 $(man1dir)/$$n.1; \ |
464 | if [ -d $(tooldir) ]; then \ | |
465 | if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \ | |
466 | rm -f $(tooldir)/bin/ld; \ | |
467 | ln $(bindir)/$$n $(tooldir)/bin/ld \ | |
468 | || $(INSTALL_PROGRAM) ld.new $(tooldir)/bin/ld; \ | |
469 | else true; fi | |
e06ba18d PB |
470 | |
471 | install-info: info | |
b189e892 ILT |
472 | -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \ |
473 | if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi | |
474 | -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi | |
afe3aa73 | 475 | for i in ld.info* ; do \ |
e06ba18d | 476 | $(INSTALL_DATA) $$i $(infodir)/$$i ; \ |
afe3aa73 RP |
477 | done |
478 | ||
12fa72d4 SC |
479 | clean-info: |
480 | -rm -rf *.info* | |
481 | ||
eb02fd64 RP |
482 | #----------------------------------------------------------------------------- |
483 | # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT | |
484 | # | |
485 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
486 | #----------------------------------------------------------------------------- | |
487 | ||
488 | ver960.c: FORCE | |
489 | rm -f ver960.c | |
490 | echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c | |
491 | ||
492 | ||
493 | # This target should be invoked before building a new release. | |
494 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
495 | # | |
496 | roll: | |
497 | @V=`cat VERSION` ; \ | |
498 | MAJ=`sed 's/\..*//' VERSION` ; \ | |
499 | MIN=`sed 's/.*\.//' VERSION` ; \ | |
500 | V=$$MAJ.`expr $$MIN + 1` ; \ | |
501 | rm -f VERSION ; \ | |
502 | echo $$V >VERSION ; \ | |
503 | echo Version $$V | |
504 | ||
239d28f3 | 505 | |
e1e5fbfc | 506 | dep: $(LDSOURCES) |
239d28f3 SC |
507 | mkdep $(CFLAGS) $? |
508 | ||
eb02fd64 RP |
509 | # Dummy target to force execution of dependent targets. |
510 | # | |
e7921bd4 | 511 | force: |
eb02fd64 RP |
512 | |
513 | # Target to uncomment host-specific lines in this makefile. Such lines must | |
514 | # have the following string beginning in column 1: #__<hostname>__# | |
515 | # Original Makefile is backed up as 'Makefile.old'. | |
516 | # | |
517 | # Invoke with: make make HOST=xxx | |
518 | # | |
519 | make: | |
520 | -@if test $(HOST)x = x ; then \ | |
521 | echo '\aSpecify "make make HOST=???"'; \ | |
522 | exit 1; \ | |
523 | fi ; \ | |
524 | grep -s "^#The next line was generated by 'make make'" Makefile; \ | |
525 | if test $$? = 0 ; then \ | |
526 | echo "\aMakefile has already been processed with 'make make'";\ | |
527 | exit 1; \ | |
528 | fi ; \ | |
529 | mv -f Makefile Makefile.old; \ | |
530 | echo "#The next line was generated by 'make make'" >Makefile ; \ | |
531 | echo "HOST=$(HOST)" >>Makefile ; \ | |
532 | echo >>Makefile ; \ | |
533 | sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile | |
534 | ||
535 | #\f | |
536 | ||
f1eb48b6 | 537 | Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) |
a26878d1 | 538 | $(SHELL) ./config.status |
eb02fd64 | 539 | |
eb02fd64 | 540 | ### mode:fundamental *** |
e06ba18d | 541 | ### Local Variables: *** |
eb02fd64 RP |
542 | ### page-delimiter: "^#\f" *** |
543 | ### End: *** | |
544 | ### end of file | |
239d28f3 SC |
545 | |
546 | ||
547 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |