]> git.ipfire.org Git - thirdparty/glibc.git/blame - io/Makefile
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / io / Makefile
CommitLineData
2b778ceb 1# Copyright (C) 1992-2021 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 15# License along with the GNU C Library; if not, see
5a82c748 16# <https://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 \
5dad6ffb
FW
28 bits/statx.h bits/statx-generic.h bits/types/struct_statx.h \
29 bits/types/struct_statx_timestamp.h \
30 utime.h ftw.h fts.h sys/sendfile.h
28f540f4 31
26cec518
UD
32routines := \
33 utime \
e186c703
UD
34 mkfifo mkfifoat \
35 stat fstat lstat stat64 fstat64 lstat64 fstatat fstatat64 \
4d97cc8c 36 statx \
99468ed4 37 mknod mknodat \
26cec518
UD
38 statfs fstatfs statfs64 fstatfs64 \
39 statvfs fstatvfs statvfs64 fstatvfs64 \
d15b99ac 40 umask chmod fchmod lchmod fchmodat \
c90c5d41 41 mkdir mkdirat \
cc0e6ed8 42 open open_2 open64 open64_2 openat openat_2 openat64 openat64_2 \
d15b99ac 43 read write lseek lseek64 access euidaccess faccessat \
06ab719d 44 fcntl fcntl64 flock lockf lockf64 \
cc0e6ed8 45 close dup dup2 dup3 pipe pipe2 \
26cec518
UD
46 creat creat64 \
47 chdir fchdir \
48 getcwd getwd getdirname \
49 chown fchown lchown fchownat \
50 ttyname ttyname_r isatty \
5c46041a 51 link linkat symlink symlinkat readlink readlinkat \
26cec518 52 unlink unlinkat rmdir \
8b7b7f75 53 ftw ftw64 fts fts64 poll ppoll \
26cec518
UD
54 posix_fadvise posix_fadvise64 \
55 posix_fallocate posix_fallocate64 \
bad7a0c8 56 sendfile sendfile64 copy_file_range \
631cf64b 57 utimensat futimens file_change_detection
28f540f4
RM
58
59others := pwd
d951286f 60test-srcs := ftwtest
25851835 61tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \
4973cbe5 62 tst-fcntl bug-ftw1 bug-ftw2 bug-ftw3 bug-ftw4 tst-statvfs \
26cec518 63 tst-openat tst-unlinkat tst-fstatat tst-futimesat \
48a1d526 64 tst-renameat tst-fchownat tst-fchmodat tst-faccessat \
046f4516 65 tst-symlinkat tst-linkat tst-readlinkat tst-mkdirat \
c1bf9f14 66 tst-mknodat tst-mkfifoat tst-ttyname_r bug-ftw5 \
45ff2bfc 67 tst-posix_fallocate tst-posix_fallocate64 \
bad7a0c8 68 tst-fts tst-fts-lfs tst-open-tmpfile \
6ba205b2 69 tst-copy_file_range tst-getcwd-abspath tst-lockf \
106ff085
XN
70 tst-ftw-lnk tst-file_change_detection tst-lchmod \
71 tst-ftw-bz26353
bad7a0c8 72
fd70af45
FW
73# Likewise for statx, but we do not need static linking here.
74tests-internal += tst-statx
8ed005da 75tests-static += tst-statx
fd70af45 76
f214606a
JM
77ifeq ($(run-built-tests),yes)
78tests-special += $(objpfx)ftwtest.out
79endif
80
28f540f4 81include ../Rules
0793d348 82
36975e8e
L
83CFLAGS-open.c += -fexceptions -fasynchronous-unwind-tables
84CFLAGS-open64.c += -fexceptions -fasynchronous-unwind-tables
85CFLAGS-creat.c += -fexceptions -fasynchronous-unwind-tables
86CFLAGS-creat64.c += -fexceptions -fasynchronous-unwind-tables
87CFLAGS-fcntl.c += -fexceptions -fasynchronous-unwind-tables
06ab719d 88CFLAGS-fcntl64.c += -fexceptions -fasynchronous-unwind-tables
36975e8e
L
89CFLAGS-poll.c += -fexceptions -fasynchronous-unwind-tables
90CFLAGS-ppoll.c += -fexceptions -fasynchronous-unwind-tables
addff78f
AZ
91CFLAGS-lockf.c += -fexceptions -fasynchronous-unwind-tables
92CFLAGS-lockf64.c += -fexceptions -fasynchronous-unwind-tables
36975e8e
L
93CFLAGS-statfs.c += -fexceptions
94CFLAGS-fstatfs.c += -fexceptions
95CFLAGS-statvfs.c += -fexceptions
96CFLAGS-fstatvfs.c += -fexceptions
97CFLAGS-fts.c += -Wno-uninitialized $(uses-callbacks) -fexceptions
98CFLAGS-fts64.c += -Wno-uninitialized $(uses-callbacks) -fexceptions
99CFLAGS-ftw.c += $(uses-callbacks) -fexceptions
100CFLAGS-ftw64.c += $(uses-callbacks) -fexceptions
36975e8e
L
101CFLAGS-posix_fallocate.c += -fexceptions
102CFLAGS-posix_fallocate64.c += -fexceptions
103CFLAGS-fallocate.c += -fexceptions
104CFLAGS-fallocate64.c += -fexceptions
105CFLAGS-read.c += -fexceptions
106CFLAGS-write.c += -fexceptions
107
108CFLAGS-test-stat.c += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
109CFLAGS-test-lfs.c += -D_LARGEFILE64_SOURCE
d951286f 110
25851835
UD
111test-stat2-ARGS = Makefile . $(objpfx)test-stat2
112
a14f121d
UD
113tst-statvfs-ARGS = $(objpfx)tst-statvfs tst-statvfs.c /tmp
114
95511aab
JM
115tst-open-tmpfile-ARGS = --test-dir=$(objpfx)
116
03ac099f 117ifeq ($(run-built-tests),yes)
89f1c388 118$(objpfx)ftwtest.out: ftwtest-sh $(objpfx)ftwtest
f0881698
JM
119 $(SHELL) $< $(common-objpfx) '$(test-program-cmd)' > $@; \
120 $(evaluate-test)
e7a95dc6 121endif