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