]> gcc.gnu.org Git - gcc.git/commitdiff
x-linux (host-linux.o): Remove header dependencies.
authorUros Bizjak <ubizjak@gmail.com>
Wed, 2 Oct 2013 21:24:50 +0000 (23:24 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Wed, 2 Oct 2013 21:24:50 +0000 (23:24 +0200)
* config/x-linux (host-linux.o): Remove header dependencies.
Use $(COMPILE) and $(POSTCOMPILE).
* config/t-linux-android (linux-android.o): Ditto.

From-SVN: r203136

gcc/ChangeLog
gcc/config/t-linux-android
gcc/config/x-linux

index a5cd31b4b7d75265d212aca2ecc73b2a6594dd1c..c4fe746775bf3839758e1d7e237e5d7892ba585f 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 6f9b03330a740a9868875a73a87119c4d32b3112..75155f44d7cfce3a8774b5ce09aa30970a979cf3 100644 (file)
@@ -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)
index f87a45b24d936ad8d3f01718020294a3060d1e5d..dba21a666e34cecc1cfeddf8cd2099881547e91d 100644 (file)
@@ -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)
This page took 0.227572 seconds and 5 git commands to generate.