| OLD | NEW |
| 1 # Copyright (C) 1995-2007, 2008 Free Software Foundation, Inc. | 1 # Copyright (C) 1995-2007, 2008 Free Software Foundation, Inc. |
| 2 # This file is part of the GNU C Library. | 2 # This file is part of the GNU C Library. |
| 3 | 3 |
| 4 # The GNU C Library is free software; you can redistribute it and/or | 4 # The GNU C Library is free software; you can redistribute it and/or |
| 5 # modify it under the terms of the GNU Lesser General Public | 5 # modify it under the terms of the GNU Lesser General Public |
| 6 # License as published by the Free Software Foundation; either | 6 # License as published by the Free Software Foundation; either |
| 7 # version 2.1 of the License, or (at your option) any later version. | 7 # version 2.1 of the License, or (at your option) any later version. |
| 8 | 8 |
| 9 # The GNU C Library is distributed in the hope that it will be useful, | 9 # The GNU C Library is distributed in the hope that it will be useful, |
| 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 # Lesser General Public License for more details. | 12 # Lesser General Public License for more details. |
| 13 | 13 |
| 14 # You should have received a copy of the GNU Lesser General Public | 14 # You should have received a copy of the GNU Lesser General Public |
| 15 # License along with the GNU C Library; if not, write to the Free | 15 # License along with the GNU C Library; if not, write to the Free |
| 16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA | 16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 17 # 02111-1307 USA. | 17 # 02111-1307 USA. |
| 18 | 18 |
| 19 # Makefile for elf subdirectory of GNU C Library. | 19 # Makefile for elf subdirectory of GNU C Library. |
| 20 | 20 |
| 21 subdir := elf | 21 subdir := elf |
| 22 | 22 |
| 23 headers = elf.h bits/elfclass.h link.h bits/link.h | 23 headers = elf.h bits/elfclass.h link.h bits/link.h |
| 24 routines = $(dl-routines) dl-support dl-iteratephdr \ | 24 routines = $(dl-routines) dl-support dl-iteratephdr \ |
| 25 dl-addr enbl-secure dl-profstub \ | 25 dl-addr enbl-secure dl-profstub \ |
| 26 » » dl-origin dl-libc dl-sym dl-tsd dl-sysdep \ | 26 » » dl-origin dl-libc dl-sym dl-tsd dl-sysdep |
| 27 » » receive_args | |
| 28 | 27 |
| 29 # The core dynamic linking functions are in libc for the static and | 28 # The core dynamic linking functions are in libc for the static and |
| 30 # profiled libraries. | 29 # profiled libraries. |
| 31 dl-routines = $(addprefix dl-,load cache lookup object reloc deps \ | 30 dl-routines = $(addprefix dl-,load cache lookup object reloc deps \ |
| 32 runtime error init fini debug misc \ | 31 runtime error init fini debug misc \ |
| 33 version profile conflict tls origin \ | 32 version profile conflict tls origin \ |
| 34 execstack caller open close trampoline) \ | 33 execstack caller open close trampoline) \ |
| 35 nacl_tls_init nacl_read_tp \ | 34 nacl_tls_init nacl_read_tp \ |
| 36 nacl_dyncode_copy nacl_dyncode_map nacl_dyncode_alloc \ | 35 nacl_dyncode_copy nacl_dyncode_map nacl_dyncode_alloc \ |
| 37 futex_emulation nacl_dyncode_valgrind | 36 futex_emulation nacl_dyncode_valgrind |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 | 953 |
| 955 $(objpfx)tst-leaks1: $(libdl) | 954 $(objpfx)tst-leaks1: $(libdl) |
| 956 $(objpfx)tst-leaks1-mem: $(objpfx)tst-leaks1.out | 955 $(objpfx)tst-leaks1-mem: $(objpfx)tst-leaks1.out |
| 957 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1.mtrace > $@ | 956 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks1.mtrace > $@ |
| 958 | 957 |
| 959 tst-leaks1-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1.mtrace | 958 tst-leaks1-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1.mtrace |
| 960 | 959 |
| 961 $(objpfx)tst-addr1: $(libdl) | 960 $(objpfx)tst-addr1: $(libdl) |
| 962 | 961 |
| 963 $(objpfx)tst-thrlock: $(libdl) $(shared-thread-library) | 962 $(objpfx)tst-thrlock: $(libdl) $(shared-thread-library) |
| OLD | NEW |