diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-02 11:29:32 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-02 11:29:32 +0000 |
commit | ea3439995b9b7bb1e636b480e98555f98bf45b0b (patch) | |
tree | e87dc0031aa99fd42060d843aab59b0457d1d108 /gcc/config/t-sol2 | |
parent | c6e92c43f5ea5a644d95c91e63b26fe029bc12bf (diff) | |
download | gcc-ea3439995b9b7bb1e636b480e98555f98bf45b0b.tar.gz |
Update t-sparc, t-sol2 etc. for automatic dependencies
* config/t-sol2 (sol2-c.o): Remove header dependencies.
Use $(COMPILE) and $(POSTCOMPILE).
(sol2-cxx.o): Likewise.
(sol2-stubs.o): Likewise.
(sol2.o): Likewise.
* config/x-solaris (host-solaris.o): Likewise.
* config/sparc/t-sparc (sparc.o): Remove.
(sparc-c.o): Remove header dependencies.
Use $(COMPILE) and $(POSTCOMPILE).
* config/sparc/x-sparc: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@203111 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/t-sol2')
-rw-r--r-- | gcc/config/t-sol2 | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/gcc/config/t-sol2 b/gcc/config/t-sol2 index 142de89de95..2d0bd7282a3 100644 --- a/gcc/config/t-sol2 +++ b/gcc/config/t-sol2 @@ -17,22 +17,21 @@ # <http://www.gnu.org/licenses/>. # Solaris-specific format checking and pragmas -sol2-c.o: $(srcdir)/config/sol2-c.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ - tree.h c-family/c-format.h $(C_PRAGMA_H) $(C_COMMON_H) $(CPPLIB_H) \ - intl.h $(TM_H) $(TM_P_H) - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< +sol2-c.o: $(srcdir)/config/sol2-c.c + $(COMPILE) $< + $(POSTCOMPILE) # Solaris-specific C++ mangling. -sol2-cxx.o: $(srcdir)/config/sol2-cxx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ - tree.h cp/cp-tree.h $(TM_H) $(TM_P_H) - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< +sol2-cxx.o: $(srcdir)/config/sol2-cxx.c + $(COMPILE) $< + $(POSTCOMPILE) # Corresponding stub routines. -sol2-stubs.o: $(srcdir)/config/sol2-stubs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ - tree.h $(TM_H) $(TM_P_H) - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< +sol2-stubs.o: $(srcdir)/config/sol2-stubs.c + $(COMPILE) $< + $(POSTCOMPILE) # Solaris-specific attributes -sol2.o: $(srcdir)/config/sol2.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ - tree.h output.h $(TM_H) $(TARGET_H) $(TM_P_H) $(GGC_H) $(HASH_TABLE_H) - $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< +sol2.o: $(srcdir)/config/sol2.c + $(COMPILE) $< + $(POSTCOMPILE) |