| OLD | NEW |
| 1 ## Makefile for the GNU C++ Support library. | 1 ## Makefile for the GNU C++ Support library. |
| 2 ## | 2 ## |
| 3 ## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, | 3 ## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
| 4 ## 2009, 2010, 2011 | 4 ## 2009, 2010, 2011 |
| 5 ## Free Software Foundation, Inc. | 5 ## Free Software Foundation, Inc. |
| 6 ## | 6 ## |
| 7 ## Process this file with automake to produce Makefile.in. | 7 ## Process this file with automake to produce Makefile.in. |
| 8 ## | 8 ## |
| 9 ## This file is part of GCC. | 9 ## This file is part of GCC. |
| 10 ## | 10 ## |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 del_opvnt.cc \ | 58 del_opvnt.cc \ |
| 59 dyncast.cc \ | 59 dyncast.cc \ |
| 60 eh_alloc.cc \ | 60 eh_alloc.cc \ |
| 61 eh_arm.cc \ | 61 eh_arm.cc \ |
| 62 eh_aux_runtime.cc \ | 62 eh_aux_runtime.cc \ |
| 63 eh_call.cc \ | 63 eh_call.cc \ |
| 64 eh_catch.cc \ | 64 eh_catch.cc \ |
| 65 eh_exception.cc \ | 65 eh_exception.cc \ |
| 66 eh_globals.cc \ | 66 eh_globals.cc \ |
| 67 eh_personality.cc \ | 67 eh_personality.cc \ |
| 68 eh_pnacl.cc \ |
| 68 eh_ptr.cc \ | 69 eh_ptr.cc \ |
| 69 eh_term_handler.cc \ | 70 eh_term_handler.cc \ |
| 70 eh_terminate.cc \ | 71 eh_terminate.cc \ |
| 71 eh_throw.cc \ | 72 eh_throw.cc \ |
| 72 eh_type.cc \ | 73 eh_type.cc \ |
| 73 eh_unex_handler.cc \ | 74 eh_unex_handler.cc \ |
| 74 enum_type_info.cc \ | 75 enum_type_info.cc \ |
| 75 function_type_info.cc \ | 76 function_type_info.cc \ |
| 76 fundamental_type_info.cc \ | 77 fundamental_type_info.cc \ |
| 77 guard.cc \ | 78 guard.cc \ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 q=`echo $$p | sed -e 's,.*/,,'`; \ | 211 q=`echo $$p | sed -e 's,.*/,,'`; \ |
| 211 rm -f $(DESTDIR)$(stddir)/$$q; \ | 212 rm -f $(DESTDIR)$(stddir)/$$q; \ |
| 212 done | 213 done |
| 213 | 214 |
| 214 uninstall-bitsHEADERS: | 215 uninstall-bitsHEADERS: |
| 215 @$(NORMAL_UNINSTALL) | 216 @$(NORMAL_UNINSTALL) |
| 216 list='$(bits_HEADERS)'; for p in $$list; do \ | 217 list='$(bits_HEADERS)'; for p in $$list; do \ |
| 217 q=`echo $$p | sed -e 's,.*/,,'`; \ | 218 q=`echo $$p | sed -e 's,.*/,,'`; \ |
| 218 rm -f $(DESTDIR)$(bitsdir)/$$q; \ | 219 rm -f $(DESTDIR)$(bitsdir)/$$q; \ |
| 219 done | 220 done |
| OLD | NEW |