Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: newlib/libc/sys/Makefile.in

Issue 1377003003: Specify output explicitly for the .c.o compile rule (Closed) Base URL: https://chromium.googlesource.com/native_client/nacl-newlib.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Makefile.in generated by automake 1.11.6 from Makefile.am. 1 # Makefile.in generated by automake 1.11.6 from Makefile.am.
2 # @configure_input@ 2 # @configure_input@
3 3
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software 5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6 # Foundation, Inc. 6 # Foundation, Inc.
7 # This Makefile.in is free software; the Free Software Foundation 7 # This Makefile.in is free software; the Free Software Foundation
8 # gives unlimited permission to copy and/or distribute it, 8 # gives unlimited permission to copy and/or distribute it,
9 # with or without modifications, as long as this notice is preserved. 9 # with or without modifications, as long as this notice is preserved.
10 10
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 tags tags-recursive uninstall uninstall-am 575 tags tags-recursive uninstall uninstall-am
576 576
577 577
578 @USE_LIBTOOL_FALSE@lib.a: $(sys_dir)/lib.a 578 @USE_LIBTOOL_FALSE@lib.a: $(sys_dir)/lib.a
579 @USE_LIBTOOL_FALSE@ rm -f $@ 579 @USE_LIBTOOL_FALSE@ rm -f $@
580 @USE_LIBTOOL_FALSE@ ln $(sys_dir)/lib.a $@ >/dev/null 2>/dev/null \ 580 @USE_LIBTOOL_FALSE@ ln $(sys_dir)/lib.a $@ >/dev/null 2>/dev/null \
581 @USE_LIBTOOL_FALSE@ || cp $(sys_dir)/lib.a $@ 581 @USE_LIBTOOL_FALSE@ || cp $(sys_dir)/lib.a $@
582 582
583 $(sys_dir)/libsys.$(aext): ; @true 583 $(sys_dir)/libsys.$(aext): ; @true
584 584
585 $(CRT0): $(sys_dir)/$(CRT0) 585 $(CRT0): $(wildcard $(sys_dir)/$(CRT0))
586 rm -f $@ 586 rm -f $@
587 » ln $(sys_dir)/$(CRT0) $@ >/dev/null 2>/dev/null \ 587 » if test -f $(sys_dir)/$(CRT0); then ln $(sys_dir)/$(CRT0) $@ >/dev/null 2>/dev/null \
588 » || cp $(sys_dir)/$(CRT0) $@ 588 » || cp $(sys_dir)/$(CRT0) $@; fi
589 589
590 $(sys_dir)/$(CRT0): ; @true 590 $(sys_dir)/$(CRT0): ; @true
591 591
592 doc: 592 doc:
593 593
594 # Tell versions [3.59,3.63) of GNU make to not export all variables. 594 # Tell versions [3.59,3.63) of GNU make to not export all variables.
595 # Otherwise a system limit (for SysV at least) may be exceeded. 595 # Otherwise a system limit (for SysV at least) may be exceeded.
596 .NOEXPORT: 596 .NOEXPORT:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698