aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2013-10-02 23:24:50 +0200
committerUros Bizjak <uros@gcc.gnu.org>2013-10-02 23:24:50 +0200
commit11b54a5a07970a1340eec04ddbd2f3b8c0597aae (patch)
tree970b1b68ed095a819843d246d70c6867a8d09210 /gcc
parent9c84da22d52e3cb52788950652ba136fe5cc1307 (diff)
downloadgcc-11b54a5a07970a1340eec04ddbd2f3b8c0597aae.zip
gcc-11b54a5a07970a1340eec04ddbd2f3b8c0597aae.tar.gz
gcc-11b54a5a07970a1340eec04ddbd2f3b8c0597aae.tar.bz2
x-linux (host-linux.o): Remove header dependencies.
* config/x-linux (host-linux.o): Remove header dependencies. Use $(COMPILE) and $(POSTCOMPILE). * config/t-linux-android (linux-android.o): Ditto. From-SVN: r203136
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/t-linux-android10
-rw-r--r--gcc/config/x-linux7
3 files changed, 13 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a5cd31b..c4fe746 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,11 @@
2013-10-02 Uros Bizjak <ubizjak@gmail.com>
+ * config/x-linux (host-linux.o): Remove header dependencies.
+ Use $(COMPILE) and $(POSTCOMPILE).
+ * config/t-linux-android (linux-android.o): Ditto.
+
+2013-10-02 Uros Bizjak <ubizjak@gmail.com>
+
* Makefile.in (expmed.o-warn): Remove.
2013-10-02 Andrew MacLeod <amacleod@redhat.com>
diff --git a/gcc/config/t-linux-android b/gcc/config/t-linux-android
index 6f9b033..75155f4 100644
--- a/gcc/config/t-linux-android
+++ b/gcc/config/t-linux-android
@@ -1,5 +1,4 @@
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013
-# Free Software Foundation, Inc.
+# Copyright (C) 2002-2013 Free Software Foundation, Inc.
#
# This file is part of GCC.
#
@@ -17,7 +16,6 @@
# along with GCC; see the file COPYING3. If not see
# <http://www.gnu.org/licenses/>.
-linux-android.o: $(srcdir)/config/linux-android.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h $(TM_H) $(TM_P_H)
- $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
- $(srcdir)/config/linux-android.c
+linux-android.o: $(srcdir)/config/linux-android.c
+ $(COMPILE) $<
+ $(POSTCOMPILE)
diff --git a/gcc/config/x-linux b/gcc/config/x-linux
index f87a45b..dba21a6 100644
--- a/gcc/config/x-linux
+++ b/gcc/config/x-linux
@@ -1,4 +1,3 @@
-host-linux.o : $(srcdir)/config/host-linux.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h hosthooks.h hosthooks-def.h $(HOOKS_H)
- $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
- $(srcdir)/config/host-linux.c
+host-linux.o : $(srcdir)/config/host-linux.c
+ $(COMPILE) $<
+ $(POSTCOMPILE)