]> git.ipfire.org Git - thirdparty/glibc.git/blame - io/Makefile
Run libm-test tests for finite-math-only functions.
[thirdparty/glibc.git] / io / Makefile
CommitLineData
b168057a 1# Copyright (C) 1992-2015 Free Software Foundation, Inc.
28f540f4
RM
2# This file is part of the GNU C Library.
3
4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
28f540f4
RM
8
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
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
28f540f4
RM
17
18#
19# Sub-makefile for I/O portion of the library.
20#
21subdir := io
22
a5f891ac
JM
23include ../Makeconfig
24
5107cf1d 25headers := sys/stat.h bits/stat.h sys/statfs.h bits/statfs.h sys/vfs.h \
867506f3 26 sys/statvfs.h bits/statvfs.h fcntl.h sys/fcntl.h bits/fcntl.h \
d5835c26 27 poll.h sys/poll.h bits/poll.h bits/fcntl2.h bits/poll2.h \
7db20e36 28 utime.h ftw.h fts.h sys/sendfile.h
28f540f4 29
26cec518
UD
30routines := \
31 utime \
e186c703
UD
32 mkfifo mkfifoat \
33 stat fstat lstat stat64 fstat64 lstat64 fstatat fstatat64 \
34 xstat fxstat lxstat xstat64 fxstat64 lxstat64 \
35 mknod mknodat xmknod xmknodat \
26cec518
UD
36 fxstatat fxstatat64 \
37 statfs fstatfs statfs64 fstatfs64 \
38 statvfs fstatvfs statvfs64 fstatvfs64 \
d15b99ac 39 umask chmod fchmod lchmod fchmodat \
c90c5d41 40 mkdir mkdirat \
cc0e6ed8 41 open open_2 open64 open64_2 openat openat_2 openat64 openat64_2 \
d15b99ac 42 read write lseek lseek64 access euidaccess faccessat \
26cec518 43 fcntl flock lockf lockf64 \
cc0e6ed8 44 close dup dup2 dup3 pipe pipe2 \
26cec518
UD
45 creat creat64 \
46 chdir fchdir \
47 getcwd getwd getdirname \
48 chown fchown lchown fchownat \
49 ttyname ttyname_r isatty \
5c46041a 50 link linkat symlink symlinkat readlink readlinkat \
26cec518 51 unlink unlinkat rmdir \
7c65e900 52 ftw ftw64 fts poll ppoll \
26cec518
UD
53 posix_fadvise posix_fadvise64 \
54 posix_fallocate posix_fallocate64 \
c27d2078
UD
55 sendfile sendfile64 \
56 utimensat futimens
28f540f4 57
cbf0489b
UD
58aux := have_o_cloexec
59
7c713e28
RM
60# These routines will be omitted from the libc shared object.
61# Instead the static object files will be included in a special archive
62# linked against when the shared library will be used.
e186c703
UD
63static-only-routines = stat fstat lstat stat64 fstat64 lstat64 \
64 fstatat fstatat64 mknod mknodat
7c713e28 65
28f540f4 66others := pwd
d951286f 67test-srcs := ftwtest
25851835 68tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \
4973cbe5 69 tst-fcntl bug-ftw1 bug-ftw2 bug-ftw3 bug-ftw4 tst-statvfs \
26cec518 70 tst-openat tst-unlinkat tst-fstatat tst-futimesat \
48a1d526 71 tst-renameat tst-fchownat tst-fchmodat tst-faccessat \
046f4516 72 tst-symlinkat tst-linkat tst-readlinkat tst-mkdirat \
c1bf9f14
UD
73 tst-mknodat tst-mkfifoat tst-ttyname_r bug-ftw5 \
74 tst-posix_fallocate
28f540f4 75
f214606a
JM
76ifeq ($(run-built-tests),yes)
77tests-special += $(objpfx)ftwtest.out
78endif
79
28f540f4 80include ../Rules
0793d348 81
c485e4d2
MS
82CFLAGS-open.c = -fexceptions -fasynchronous-unwind-tables
83CFLAGS-open64.c = -fexceptions -fasynchronous-unwind-tables
7a114794
UD
84CFLAGS-fcntl.c = -fexceptions -fasynchronous-unwind-tables
85CFLAGS-poll.c = -fexceptions -fasynchronous-unwind-tables
7c65e900 86CFLAGS-ppoll.c = -fexceptions -fasynchronous-unwind-tables
7a114794 87CFLAGS-lockf.c = -fexceptions
f1c30c98
UD
88CFLAGS-statfs.c = -fexceptions
89CFLAGS-fstatfs.c = -fexceptions
90CFLAGS-statvfs.c = -fexceptions
91CFLAGS-fstatvfs.c = -fexceptions
e07bb02a
UD
92CFLAGS-fts.c = -Wno-uninitialized $(uses-callbacks) -fexceptions
93CFLAGS-ftw.c = $(uses-callbacks) -fexceptions
94CFLAGS-ftw64.c = $(uses-callbacks) -fexceptions
8dab36a1
UD
95CFLAGS-lockf.c = -fexceptions
96CFLAGS-posix_fallocate.c = -fexceptions
97CFLAGS-posix_fallocate64.c = -fexceptions
748876bf
UD
98CFLAGS-fallocate.c = -fexceptions
99CFLAGS-fallocate64.c = -fexceptions
100CFLAGS-sync_file_range.c = -fexceptions
7a114794 101
514f9e32 102CFLAGS-test-stat.c = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
4a3c3ca1 103CFLAGS-test-lfs.c = -D_LARGEFILE64_SOURCE
d951286f 104
25851835
UD
105test-stat2-ARGS = Makefile . $(objpfx)test-stat2
106
a14f121d
UD
107tst-statvfs-ARGS = $(objpfx)tst-statvfs tst-statvfs.c /tmp
108
03ac099f 109ifeq ($(run-built-tests),yes)
89f1c388 110$(objpfx)ftwtest.out: ftwtest-sh $(objpfx)ftwtest
f0881698
JM
111 $(SHELL) $< $(common-objpfx) '$(test-program-cmd)' > $@; \
112 $(evaluate-test)
e7a95dc6 113endif