Fix mips64n32 getdents alias
[glibc.git] / support / Makefile
blobc632df6053b3add56c4963ba062931db036221a7
1 # Makefile for support library, used only at build and test time
2 # Copyright (C) 2016-2018 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
19 subdir := support
21 include ../Makeconfig
23 extra-libs := libsupport
24 extra-libs-others = $(extra-libs)
25 extra-libs-noinstall := $(extra-libs)
27 libsupport-routines = \
28 check \
29 check_addrinfo \
30 check_dns_packet \
31 check_hostent \
32 check_netent \
33 delayed_exit \
34 ignore_stderr \
35 next_to_fault \
36 oom_error \
37 resolv_test \
38 set_fortify_handler \
39 support-xfstat \
40 support-xstat \
41 support_become_root \
42 support_can_chroot \
43 support_capture_subprocess \
44 support_capture_subprocess_check \
45 support_chroot \
46 support_enter_mount_namespace \
47 support_enter_network_namespace \
48 support_format_address_family \
49 support_format_addrinfo \
50 support_format_dns_packet \
51 support_format_herrno \
52 support_format_hostent \
53 support_format_netent \
54 support_isolate_in_subprocess \
55 support_openpty \
56 support_record_failure \
57 support_run_diff \
58 support_shared_allocate \
59 support_test_compare_failure \
60 support_write_file_string \
61 support_test_main \
62 support_test_verify_impl \
63 temp_file \
64 write_message \
65 xaccept \
66 xaccept4 \
67 xasprintf \
68 xbind \
69 xcalloc \
70 xchroot \
71 xclose \
72 xconnect \
73 xdlfcn \
74 xdup2 \
75 xfclose \
76 xfopen \
77 xfork \
78 xftruncate \
79 xgetsockname \
80 xlisten \
81 xlseek \
82 xmalloc \
83 xmemstream \
84 xmkdir \
85 xmmap \
86 xmprotect \
87 xmunmap \
88 xopen \
89 xpipe \
90 xpoll \
91 xpthread_attr_destroy \
92 xpthread_attr_init \
93 xpthread_attr_setdetachstate \
94 xpthread_attr_setguardsize \
95 xpthread_attr_setstacksize \
96 xpthread_barrier_destroy \
97 xpthread_barrier_init \
98 xpthread_barrier_wait \
99 xpthread_cancel \
100 xpthread_check_return \
101 xpthread_cond_wait \
102 xpthread_create \
103 xpthread_detach \
104 xpthread_join \
105 xpthread_mutex_consistent \
106 xpthread_mutex_destroy \
107 xpthread_mutex_init \
108 xpthread_mutex_lock \
109 xpthread_mutex_unlock \
110 xpthread_mutexattr_destroy \
111 xpthread_mutexattr_init \
112 xpthread_mutexattr_setprotocol \
113 xpthread_mutexattr_setpshared \
114 xpthread_mutexattr_setrobust \
115 xpthread_mutexattr_settype \
116 xpthread_once \
117 xpthread_rwlock_init \
118 xpthread_rwlock_rdlock \
119 xpthread_rwlock_unlock \
120 xpthread_rwlock_wrlock \
121 xpthread_rwlockattr_init \
122 xpthread_rwlockattr_setkind_np \
123 xpthread_sigmask \
124 xpthread_spin_lock \
125 xpthread_spin_unlock \
126 xraise \
127 xreadlink \
128 xrealloc \
129 xrecvfrom \
130 xsendto \
131 xsetsockopt \
132 xsigaction \
133 xsignal \
134 xsocket \
135 xstrdup \
136 xstrndup \
137 xsysconf \
138 xunlink \
139 xwaitpid \
140 xwrite \
142 libsupport-static-only-routines := $(libsupport-routines)
143 # Only build one variant of the library.
144 libsupport-inhibit-o := .os
145 ifeq ($(build-shared),yes)
146 libsupport-inhibit-o += .o
147 endif
149 tests = \
150 README-testing \
151 tst-support-namespace \
152 tst-support_capture_subprocess \
153 tst-support_format_dns_packet \
154 tst-support_record_failure \
155 tst-test_compare \
156 tst-xreadlink \
158 ifeq ($(run-built-tests),yes)
159 tests-special = \
160 $(objpfx)tst-support_record_failure-2.out
162 $(objpfx)tst-support_record_failure-2.out: tst-support_record_failure-2.sh \
163 $(objpfx)tst-support_record_failure
164 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
165 '$(run-program-env)' '$(test-program-prefix-after-env)' \
166 > $@; \
167 $(evaluate-test)
168 endif
170 $(objpfx)tst-support_format_dns_packet: $(common-objpfx)resolv/libresolv.so
172 include ../Rules