OLD | NEW |
1 # Copyright (C) 1991-2006, 2007 Free Software Foundation, Inc. | 1 # Copyright (C) 1991-2006, 2007 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 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 syslog syscall daemon \ | 57 syslog syscall daemon \ |
58 mmap mmap64 munmap mprotect msync madvise mincore remap_file_pages\ | 58 mmap mmap64 munmap mprotect msync madvise mincore remap_file_pages\ |
59 mlock munlock mlockall munlockall \ | 59 mlock munlock mlockall munlockall \ |
60 efgcvt efgcvt_r qefgcvt qefgcvt_r \ | 60 efgcvt efgcvt_r qefgcvt qefgcvt_r \ |
61 hsearch hsearch_r tsearch lsearch \ | 61 hsearch hsearch_r tsearch lsearch \ |
62 err error ustat \ | 62 err error ustat \ |
63 getsysstats dirname regexp \ | 63 getsysstats dirname regexp \ |
64 getloadavg getclktck \ | 64 getloadavg getclktck \ |
65 fgetxattr flistxattr fremovexattr fsetxattr getxattr \ | 65 fgetxattr flistxattr fremovexattr fsetxattr getxattr \ |
66 listxattr lgetxattr llistxattr lremovexattr lsetxattr \ | 66 listxattr lgetxattr llistxattr lremovexattr lsetxattr \ |
67 » removexattr setxattr unimpl_syscall | 67 » removexattr setxattr |
68 | 68 |
69 distribute := device-nrs.h | 69 distribute := device-nrs.h |
70 | 70 |
71 generated := tst-error1.mtrace tst-error1-mem | 71 generated := tst-error1.mtrace tst-error1-mem |
72 | 72 |
73 include ../Makeconfig | 73 include ../Makeconfig |
74 | 74 |
75 aux := init-misc | 75 aux := init-misc |
76 ifeq ($(build-static),yes) | 76 ifeq ($(build-static),yes) |
77 install-lib := libbsd-compat.a libg.a | 77 install-lib := libbsd-compat.a libg.a |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 endif | 113 endif |
114 | 114 |
115 ifeq ($(build-bounded),yes) | 115 ifeq ($(build-bounded),yes) |
116 $(objpfx)tst-tsearch-bp: $(common-objpfx)math/libm_b.a | 116 $(objpfx)tst-tsearch-bp: $(common-objpfx)math/libm_b.a |
117 endif | 117 endif |
118 | 118 |
119 tst-error1-ENV = MALLOC_TRACE=$(objpfx)tst-error1.mtrace | 119 tst-error1-ENV = MALLOC_TRACE=$(objpfx)tst-error1.mtrace |
120 tst-error1-ARGS = $(objpfx)tst-error1.out | 120 tst-error1-ARGS = $(objpfx)tst-error1.out |
121 $(objpfx)tst-error1-mem: $(objpfx)tst-error1.out | 121 $(objpfx)tst-error1-mem: $(objpfx)tst-error1.out |
122 $(common-objpfx)malloc/mtrace $(objpfx)tst-error1.mtrace > $@ | 122 $(common-objpfx)malloc/mtrace $(objpfx)tst-error1.mtrace > $@ |
OLD | NEW |