Deleted Added
full compact
Makefile.in (171835) Makefile.in (243933)
1# Makefile for GNU Compiler Collection
2# Run 'configure' to generate Makefile from Makefile.in
3
4# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
5# 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6# Free Software Foundation, Inc.
7
8#This file is part of GCC.

--- 224 unchanged lines hidden (view full) ---

233
234AWK = @AWK@
235CC = @CC@
236BISON = @BISON@
237BISONFLAGS =
238FLEX = @FLEX@
239FLEXFLAGS =
240AR = @AR@
1# Makefile for GNU Compiler Collection
2# Run 'configure' to generate Makefile from Makefile.in
3
4# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
5# 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6# Free Software Foundation, Inc.
7
8#This file is part of GCC.

--- 224 unchanged lines hidden (view full) ---

233
234AWK = @AWK@
235CC = @CC@
236BISON = @BISON@
237BISONFLAGS =
238FLEX = @FLEX@
239FLEXFLAGS =
240AR = @AR@
241AR_FLAGS = rc
241ARFLAGS = @ARFLAGS@
242NM = @NM@
243RANLIB = @RANLIB@
244RANLIB_FLAGS = @ranlib_flags@
245
246# -------------------------------------------
247# Programs which operate on the build machine
248# -------------------------------------------
249

--- 1048 unchanged lines hidden (view full) ---

1298
1299# Recompile all the language-independent object files.
1300# This is used only if the user explicitly asks for it.
1301compilations: $(BACKEND)
1302
1303# This archive is strictly for the host.
1304libbackend.a: $(OBJS@onestep@)
1305 -rm -rf libbackend.a
242NM = @NM@
243RANLIB = @RANLIB@
244RANLIB_FLAGS = @ranlib_flags@
245
246# -------------------------------------------
247# Programs which operate on the build machine
248# -------------------------------------------
249

--- 1048 unchanged lines hidden (view full) ---

1298
1299# Recompile all the language-independent object files.
1300# This is used only if the user explicitly asks for it.
1301compilations: $(BACKEND)
1302
1303# This archive is strictly for the host.
1304libbackend.a: $(OBJS@onestep@)
1305 -rm -rf libbackend.a
1306 $(AR) $(AR_FLAGS) libbackend.a $(OBJS@onestep@)
1306 $(AR) $(ARFLAGS) libbackend.a $(OBJS@onestep@)
1307 -$(RANLIB) $(RANLIB_FLAGS) libbackend.a
1308
1309# We call this executable `xgcc' rather than `gcc'
1310# to avoid confusion if the current directory is in the path
1311# and CC is `gcc'. It is renamed to `gcc' when it is installed.
1312xgcc$(exeext): $(GCC_OBJS) gccspec.o version.o intl.o prefix.o \
1313 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1314 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) gccspec.o \

--- 3454 unchanged lines hidden ---
1307 -$(RANLIB) $(RANLIB_FLAGS) libbackend.a
1308
1309# We call this executable `xgcc' rather than `gcc'
1310# to avoid confusion if the current directory is in the path
1311# and CC is `gcc'. It is renamed to `gcc' when it is installed.
1312xgcc$(exeext): $(GCC_OBJS) gccspec.o version.o intl.o prefix.o \
1313 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1314 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) gccspec.o \

--- 3454 unchanged lines hidden ---