mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-23 22:10:08 +08:00
Make-lang.in (OBJC): Remove
* gcc/objc/Make-lang.in (OBJC): Remove (OBJECTIVE-C): Remove (objective-c): Remove (.PHONY): Remove objective-c and ObjC * gcc/objcp/Make-lang.in (OBJ-C++): Remove (.PHONY): Remove Obj-c++ and obj-C++. Add obj-c++ * gcc/cp/Make-lang.in (C++): Remove (.PHONY): Remove C++ * gcc/ada/Make-lang.in (Ada): Remove (.PHONY): Remove Ada * gcc/fortran/Make-lang.in (FORTRAN): Remove (.PHONY): Remove F95 and f95. Add fortran * gcc/treelang/Make-lang.in (.phony): Remove TREELANG (TREELANG): Remove * gcc/Makefile.in (C): Remove (PROTO): Remove (.PHONY): Remove C and PROTO From-SVN: r111307
This commit is contained in:
parent
517f4918ea
commit
9d29a5b779
@ -1,3 +1,8 @@
|
||||
2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
* Makefile.in (C): Remove
|
||||
(PROTO): Remove
|
||||
(.PHONY): Remove C and PROTO
|
||||
|
||||
2006-02-20 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
PR middle-end/26236
|
||||
|
@ -1263,11 +1263,10 @@ native: config.status auto-host.h build-@POSUB@ $(LANGUAGES) \
|
||||
$(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(COLLECT2)
|
||||
|
||||
# Define the names for selecting languages in LANGUAGES.
|
||||
C c: cc1$(exeext)
|
||||
PROTO: proto
|
||||
c: cc1$(exeext)
|
||||
|
||||
# Tell GNU make these are phony targets.
|
||||
.PHONY: C c PROTO proto
|
||||
.PHONY: c proto
|
||||
|
||||
# On the target machine, finish building a cross compiler.
|
||||
# This does the things that can't be done on the host machine.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
* Make-lang.in (Ada): Remove
|
||||
(.PHONY): Remove Ada
|
||||
|
||||
2006-02-17 Ed Schonberg <schonberg@adacore.com>
|
||||
|
||||
* sem_ch4.adb (Find_Boolean_Types): If one of the operands is an
|
||||
|
@ -82,10 +82,10 @@ ada/b_gnatb.o-warn = -Wno-error
|
||||
$(CC) -c $(ALL_ADAFLAGS) $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
|
||||
|
||||
# Define the names for selecting Ada in LANGUAGES.
|
||||
Ada ada: gnat1$(exeext) gnatbind$(exeext)
|
||||
ada: gnat1$(exeext) gnatbind$(exeext)
|
||||
|
||||
# Tell GNU Make to ignore these, if they exist.
|
||||
.PHONY: Ada ada
|
||||
.PHONY: ada
|
||||
|
||||
# There are too many Ada sources to check against here. Let's
|
||||
# always force the recursive make.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
* Make-lang.in (C++): Remove
|
||||
(.PHONY): Remove C++
|
||||
|
||||
2006-02-18 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/26266
|
||||
|
@ -48,10 +48,10 @@ GXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo g++|sed '$(progra
|
||||
# Note that it would be nice to move the dependency on g++
|
||||
# into the C++ rule, but that needs a little bit of work
|
||||
# to do the right thing within all.cross.
|
||||
C++ c++: cc1plus$(exeext)
|
||||
c++: cc1plus$(exeext)
|
||||
|
||||
# Tell GNU make to ignore these if they exist.
|
||||
.PHONY: C++ c++
|
||||
.PHONY: c++
|
||||
|
||||
g++spec.o: $(srcdir)/cp/g++spec.c $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H) $(CONFIG_H)
|
||||
(SHLIB_LINK='$(SHLIB_LINK)' \
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-02-20 Rafael <20>Ávila de Esp<73>índola <rafael.espindola@gmail.com>
|
||||
* Make-lang.in (FORTRAN): Remove
|
||||
(.PHONY): Remove F95 and f95. Add fortran
|
||||
|
||||
2006-02-20 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* trans-stmt.c (gfc_trans_where_2): Avoid updating unused current
|
||||
|
@ -81,10 +81,10 @@ F95_LIBS = $(GMPLIBS) $(LIBS)
|
||||
|
||||
#
|
||||
# Define the names for selecting gfortran in LANGUAGES.
|
||||
FORTRAN fortran: f951$(exeext)
|
||||
fortran: f951$(exeext)
|
||||
|
||||
# Tell GNU make to ignore files by these names if they exist.
|
||||
.PHONY: F95 f95
|
||||
.PHONY: fortran
|
||||
|
||||
gfortranspec.o: $(srcdir)/fortran/gfortranspec.c $(SYSTEM_H) $(TM_H) $(GCC_H) $(CONFIG_H)
|
||||
(SHLIB_LINK='$(SHLIB_LINK)' \
|
||||
|
@ -1,3 +1,9 @@
|
||||
2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
* Make-lang.in (OBJC): Remove
|
||||
(OBJECTIVE-C): Remove
|
||||
(objective-c): Remove
|
||||
(.PHONY): Remove objective-c and ObjC
|
||||
|
||||
2005-12-14 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR objc/25360
|
||||
|
@ -38,11 +38,10 @@
|
||||
|
||||
#
|
||||
# Define the names for selecting Objective-C in LANGUAGES.
|
||||
OBJC objc: cc1obj$(exeext)
|
||||
OBJECTIVE-C objective-c: cc1obj$(exeext)
|
||||
objc: cc1obj$(exeext)
|
||||
|
||||
# Tell GNU make to ignore these if they exist.
|
||||
.PHONY: objective-c objc ObjC
|
||||
.PHONY: objc
|
||||
|
||||
# Use maximal warnings for this front end.
|
||||
objc-warn = $(STRICT_WARN)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
* Make-lang.in (OBJ-C++): Remove
|
||||
(.PHONY): Remove Obj-c++ and obj-C++. Add obj-c++
|
||||
|
||||
2005-12-14 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
* Make-lang.in (objcp/objcp-decl.o): Add depends on $(EXPR_H).
|
||||
|
@ -38,10 +38,10 @@
|
||||
|
||||
#
|
||||
# Define the names for selecting Objective-C++ in LANGUAGES.
|
||||
OBJ-C++ obj-c++: cc1objplus$(exeext)
|
||||
obj-c++: cc1objplus$(exeext)
|
||||
|
||||
# Tell GNU make to ignore these if they exist.
|
||||
.PHONY: Obj-c++ obj-C++
|
||||
.PHONY: obj-c++
|
||||
|
||||
# Use maximal warnings for this front end. Also, make ObjC and C++
|
||||
# headers accessible.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2006-02-20 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
* Make-lang.in (.phony): Remove TREELANG
|
||||
(TREELANG): Remove
|
||||
|
||||
2006-01-21 Joseph S. Myers <joseph@codesourcery.com>
|
||||
|
||||
* spec.c (lang_specific_driver): Update copyright notice date.
|
||||
|
@ -68,9 +68,9 @@ treelang/lex.o-warn = -Wno-error
|
||||
#
|
||||
# Define the names for selecting treelang in LANGUAGES.
|
||||
|
||||
.phony: treelang TREELANG
|
||||
.phony: treelang
|
||||
|
||||
treelang TREELANG:treelang.done
|
||||
treelang:treelang.done
|
||||
|
||||
treelang.done: gtreelang$(exeext) tree1$(exeext)
|
||||
$(STAMP) treelang.done
|
||||
|
Loading…
Reference in New Issue
Block a user