mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
conform: Reformat Makefile.
Reflow and sort Makefile. No code changes in generated binary artifacts. No regressions on x86_64 and i686.
This commit is contained in:
parent
c503c2603c
commit
06e51f4d6d
344
conform/Makefile
344
conform/Makefile
@ -25,78 +25,290 @@ include ../Makeconfig
|
|||||||
conformtest-headers-data := $(wildcard data/*.h-data) \
|
conformtest-headers-data := $(wildcard data/*.h-data) \
|
||||||
$(wildcard data/*/*.h-data)
|
$(wildcard data/*/*.h-data)
|
||||||
|
|
||||||
conformtest-standards := ISO ISO99 ISO11 POSIX XPG4 XPG42 UNIX98 XOPEN2K \
|
conformtest-standards := \
|
||||||
POSIX2008 XOPEN2K8
|
ISO \
|
||||||
|
ISO11 \
|
||||||
conformtest-headers-ISO := assert.h ctype.h errno.h float.h limits.h locale.h \
|
ISO99 \
|
||||||
math.h setjmp.h signal.h stdarg.h stddef.h stdio.h \
|
POSIX \
|
||||||
stdlib.h string.h time.h
|
POSIX2008 \
|
||||||
conformtest-headers-ISO99 := $(conformtest-headers-ISO) complex.h fenv.h \
|
UNIX98 \
|
||||||
inttypes.h iso646.h stdbool.h stdint.h tgmath.h \
|
XOPEN2K \
|
||||||
wchar.h wctype.h
|
XOPEN2K8 \
|
||||||
|
XPG4 \
|
||||||
|
XPG42 \
|
||||||
|
# conformtest-standards
|
||||||
|
conformtest-headers-ISO := \
|
||||||
|
assert.h \
|
||||||
|
ctype.h \
|
||||||
|
errno.h \
|
||||||
|
float.h \
|
||||||
|
limits.h \
|
||||||
|
locale.h \
|
||||||
|
math.h \
|
||||||
|
setjmp.h \
|
||||||
|
signal.h \
|
||||||
|
stdarg.h \
|
||||||
|
stddef.h \
|
||||||
|
stdio.h \
|
||||||
|
stdlib.h \
|
||||||
|
string.h \
|
||||||
|
time.h \
|
||||||
|
# conformtest-headers-ISO
|
||||||
|
conformtest-headers-ISO99 := \
|
||||||
|
$(conformtest-headers-ISO) \
|
||||||
|
complex.h \
|
||||||
|
fenv.h \
|
||||||
|
inttypes.h \
|
||||||
|
iso646.h \
|
||||||
|
stdbool.h \
|
||||||
|
stdint.h \
|
||||||
|
tgmath.h \
|
||||||
|
wchar.h \
|
||||||
|
wctype.h \
|
||||||
|
# conformtest-headers-ISO99
|
||||||
# Missing ISO11 expectations for: stdatomic.h
|
# Missing ISO11 expectations for: stdatomic.h
|
||||||
conformtest-headers-ISO11 := $(conformtest-headers-ISO99) stdalign.h \
|
conformtest-headers-ISO11 := \
|
||||||
stdnoreturn.h threads.h uchar.h
|
$(conformtest-headers-ISO99) \
|
||||||
conformtest-headers-POSIX := $(conformtest-headers-ISO) aio.h dirent.h \
|
stdalign.h \
|
||||||
fcntl.h fnmatch.h glob.h grp.h mqueue.h \
|
stdnoreturn.h \
|
||||||
pthread.h pwd.h regex.h sched.h semaphore.h \
|
threads.h \
|
||||||
sys/mman.h sys/stat.h sys/times.h sys/types.h \
|
uchar.h \
|
||||||
sys/utsname.h sys/wait.h tar.h termios.h \
|
# conformtest-headers-ISO11
|
||||||
unistd.h utime.h wordexp.h
|
conformtest-headers-POSIX := \
|
||||||
|
$(conformtest-headers-ISO) \
|
||||||
|
aio.h \
|
||||||
|
dirent.h \
|
||||||
|
fcntl.h \
|
||||||
|
fnmatch.h \
|
||||||
|
glob.h \
|
||||||
|
grp.h \
|
||||||
|
mqueue.h \
|
||||||
|
pthread.h \
|
||||||
|
pwd.h \
|
||||||
|
regex.h \
|
||||||
|
sched.h \
|
||||||
|
semaphore.h \
|
||||||
|
sys/mman.h \
|
||||||
|
sys/stat.h \
|
||||||
|
sys/times.h \
|
||||||
|
sys/types.h \
|
||||||
|
sys/utsname.h \
|
||||||
|
sys/wait.h \
|
||||||
|
tar.h \
|
||||||
|
termios.h \
|
||||||
|
unistd.h \
|
||||||
|
utime.h \
|
||||||
|
wordexp.h \
|
||||||
|
# conformtest-headers-POSIX
|
||||||
# Missing XPG4 expectations for: regexp.h wchar.h.
|
# Missing XPG4 expectations for: regexp.h wchar.h.
|
||||||
conformtest-headers-XPG4 := $(conformtest-headers-ISO) cpio.h dirent.h \
|
conformtest-headers-XPG4 := \
|
||||||
fcntl.h fnmatch.h ftw.h glob.h grp.h iconv.h \
|
$(conformtest-headers-ISO) \
|
||||||
langinfo.h monetary.h nl_types.h pwd.h regex.h \
|
cpio.h \
|
||||||
search.h sys/ipc.h sys/msg.h sys/sem.h sys/shm.h \
|
dirent.h \
|
||||||
sys/stat.h sys/times.h sys/types.h sys/utsname.h \
|
fcntl.h \
|
||||||
sys/wait.h tar.h termios.h ulimit.h unistd.h \
|
fnmatch.h \
|
||||||
utime.h varargs.h wordexp.h
|
ftw.h \
|
||||||
# Missing XPG42 expectations for: re_comp.h regexp.h wchar.h.
|
glob.h \
|
||||||
|
grp.h \
|
||||||
|
iconv.h \
|
||||||
|
langinfo.h \
|
||||||
|
monetary.h \
|
||||||
|
nl_types.h \
|
||||||
|
pwd.h \
|
||||||
|
regex.h \
|
||||||
|
search.h \
|
||||||
|
sys/ipc.h \
|
||||||
|
sys/msg.h \
|
||||||
|
sys/sem.h \
|
||||||
|
sys/shm.h \
|
||||||
|
sys/stat.h \
|
||||||
|
sys/times.h \
|
||||||
|
sys/types.h \
|
||||||
|
sys/utsname.h \
|
||||||
|
sys/wait.h \
|
||||||
|
tar.h \
|
||||||
|
termios.h \
|
||||||
|
ulimit.h \
|
||||||
|
unistd.h \
|
||||||
|
utime.h \
|
||||||
|
varargs.h \
|
||||||
|
wordexp.h \
|
||||||
|
# conformtest-headers-XPG4
|
||||||
|
# Missing XPG42 expectations for:
|
||||||
|
# re_comp.h
|
||||||
|
# regexp.h
|
||||||
|
# wchar.h
|
||||||
# XPG42 includes XTI and STREAMS, but those are not implemented by glibc.
|
# XPG42 includes XTI and STREAMS, but those are not implemented by glibc.
|
||||||
conformtest-headers-XPG42 := $(conformtest-headers-XPG4) arpa/inet.h fmtmsg.h \
|
conformtest-headers-XPG42 := \
|
||||||
libgen.h ndbm.h netdb.h netinet/in.h poll.h \
|
$(conformtest-headers-XPG4) \
|
||||||
strings.h sys/mman.h sys/resource.h \
|
arpa/inet.h \
|
||||||
sys/socket.h sys/statvfs.h sys/time.h sys/timeb.h \
|
fmtmsg.h \
|
||||||
sys/uio.h sys/un.h syslog.h ucontext.h utmpx.h
|
libgen.h \
|
||||||
# Missing UNIX98 expectations for: inttypes.h re_comp.h regexp.h.
|
ndbm.h \
|
||||||
|
netdb.h \
|
||||||
|
netinet/in.h \
|
||||||
|
poll.h \
|
||||||
|
strings.h \
|
||||||
|
sys/mman.h \
|
||||||
|
sys/resource.h \
|
||||||
|
sys/socket.h \
|
||||||
|
sys/statvfs.h \
|
||||||
|
sys/time.h \
|
||||||
|
sys/timeb.h \
|
||||||
|
sys/uio.h \
|
||||||
|
sys/un.h \
|
||||||
|
syslog.h \
|
||||||
|
ucontext.h \
|
||||||
|
utmpx.h \
|
||||||
|
# conformtest-headers-XPG42
|
||||||
|
# Missing UNIX98 expectations for:
|
||||||
|
# inttypes.h
|
||||||
|
# re_comp.h
|
||||||
|
# regexp.h
|
||||||
# The online UNIX98 includes XCURSES, but curses.h, term.h and
|
# The online UNIX98 includes XCURSES, but curses.h, term.h and
|
||||||
# unctrl.h are outside the scope of these tests. It also includes
|
# unctrl.h are outside the scope of these tests. It also includes
|
||||||
# XTI and STREAMS, but those are not implemented by glibc.
|
# XTI and STREAMS, but those are not implemented by glibc.
|
||||||
conformtest-headers-UNIX98 := $(conformtest-headers-POSIX) arpa/inet.h cpio.h \
|
conformtest-headers-UNIX98 := \
|
||||||
dlfcn.h fmtmsg.h ftw.h iconv.h iso646.h \
|
$(conformtest-headers-POSIX) \
|
||||||
langinfo.h libgen.h monetary.h ndbm.h netdb.h \
|
arpa/inet.h \
|
||||||
netinet/in.h nl_types.h poll.h search.h \
|
cpio.h \
|
||||||
strings.h sys/ipc.h sys/msg.h \
|
dlfcn.h \
|
||||||
sys/resource.h sys/sem.h sys/shm.h sys/socket.h \
|
fmtmsg.h \
|
||||||
sys/statvfs.h sys/time.h sys/timeb.h sys/uio.h \
|
ftw.h \
|
||||||
sys/un.h syslog.h ucontext.h ulimit.h utmpx.h \
|
iconv.h \
|
||||||
varargs.h wchar.h wctype.h
|
iso646.h \
|
||||||
# Missing XOPEN2K expectations for: trace.h, stropts.h.
|
langinfo.h \
|
||||||
conformtest-headers-XOPEN2K := $(conformtest-headers-POSIX) arpa/inet.h \
|
libgen.h \
|
||||||
complex.h cpio.h dlfcn.h fenv.h fmtmsg.h ftw.h \
|
monetary.h \
|
||||||
iconv.h inttypes.h iso646.h langinfo.h \
|
ndbm.h \
|
||||||
libgen.h monetary.h ndbm.h net/if.h netdb.h \
|
netdb.h \
|
||||||
netinet/in.h netinet/tcp.h nl_types.h poll.h \
|
netinet/in.h \
|
||||||
search.h spawn.h stdbool.h stdint.h strings.h \
|
nl_types.h \
|
||||||
sys/ipc.h sys/msg.h sys/resource.h \
|
poll.h \
|
||||||
sys/select.h sys/sem.h sys/shm.h sys/socket.h \
|
search.h \
|
||||||
sys/statvfs.h sys/time.h sys/timeb.h sys/uio.h \
|
strings.h \
|
||||||
sys/un.h syslog.h tgmath.h ucontext.h ulimit.h \
|
sys/ipc.h \
|
||||||
utmpx.h wchar.h wctype.h
|
sys/msg.h \
|
||||||
# Missing POSIX2008 expectations for: trace.h, stropts.h.
|
sys/resource.h \
|
||||||
conformtest-headers-POSIX2008 := $(conformtest-headers-POSIX) arpa/inet.h \
|
sys/sem.h \
|
||||||
complex.h cpio.h dlfcn.h fenv.h iconv.h \
|
sys/shm.h \
|
||||||
inttypes.h iso646.h langinfo.h monetary.h \
|
sys/socket.h \
|
||||||
net/if.h netdb.h netinet/in.h netinet/tcp.h \
|
sys/statvfs.h \
|
||||||
nl_types.h poll.h spawn.h stdbool.h stdint.h \
|
sys/time.h \
|
||||||
strings.h sys/select.h \
|
sys/timeb.h \
|
||||||
sys/socket.h sys/statvfs.h sys/un.h tgmath.h \
|
sys/uio.h \
|
||||||
wchar.h wctype.h
|
sys/un.h \
|
||||||
# Missing XOPEN2K8 expectations for: trace.h.
|
syslog.h \
|
||||||
conformtest-headers-XOPEN2K8 := $(conformtest-headers-POSIX2008) fmtmsg.h \
|
ucontext.h \
|
||||||
ftw.h libgen.h ndbm.h search.h sys/ipc.h \
|
ulimit.h \
|
||||||
sys/msg.h sys/resource.h sys/sem.h sys/shm.h \
|
utmpx.h \
|
||||||
sys/time.h sys/uio.h syslog.h ulimit.h utmpx.h
|
varargs.h \
|
||||||
|
wchar.h \
|
||||||
|
wctype.h \
|
||||||
|
# conformtest-headers-UNIX98
|
||||||
|
# Missing XOPEN2K expectations for:
|
||||||
|
# trace.h
|
||||||
|
# stropts.h
|
||||||
|
conformtest-headers-XOPEN2K := \
|
||||||
|
$(conformtest-headers-POSIX) \
|
||||||
|
arpa/inet.h \
|
||||||
|
complex.h \
|
||||||
|
cpio.h \
|
||||||
|
dlfcn.h \
|
||||||
|
fenv.h \
|
||||||
|
fmtmsg.h \
|
||||||
|
ftw.h \
|
||||||
|
iconv.h \
|
||||||
|
inttypes.h \
|
||||||
|
iso646.h \
|
||||||
|
langinfo.h \
|
||||||
|
libgen.h \
|
||||||
|
monetary.h \
|
||||||
|
ndbm.h \
|
||||||
|
net/if.h \
|
||||||
|
netdb.h \
|
||||||
|
netinet/in.h \
|
||||||
|
netinet/tcp.h \
|
||||||
|
nl_types.h \
|
||||||
|
poll.h \
|
||||||
|
search.h \
|
||||||
|
spawn.h \
|
||||||
|
stdbool.h \
|
||||||
|
stdint.h \
|
||||||
|
strings.h \
|
||||||
|
sys/ipc.h \
|
||||||
|
sys/msg.h \
|
||||||
|
sys/resource.h \
|
||||||
|
sys/select.h \
|
||||||
|
sys/sem.h \
|
||||||
|
sys/shm.h \
|
||||||
|
sys/socket.h \
|
||||||
|
sys/statvfs.h \
|
||||||
|
sys/time.h \
|
||||||
|
sys/timeb.h \
|
||||||
|
sys/uio.h \
|
||||||
|
sys/un.h \
|
||||||
|
syslog.h \
|
||||||
|
tgmath.h \
|
||||||
|
ucontext.h \
|
||||||
|
ulimit.h \
|
||||||
|
utmpx.h \
|
||||||
|
wchar.h \
|
||||||
|
wctype.h \
|
||||||
|
# conformtest-headers-XOPEN2K
|
||||||
|
# Missing POSIX2008 expectations for:
|
||||||
|
# trace.h
|
||||||
|
# stropts.h
|
||||||
|
conformtest-headers-POSIX2008 := \
|
||||||
|
$(conformtest-headers-POSIX) \
|
||||||
|
arpa/inet.h \
|
||||||
|
complex.h \
|
||||||
|
cpio.h \
|
||||||
|
dlfcn.h \
|
||||||
|
fenv.h \
|
||||||
|
iconv.h \
|
||||||
|
inttypes.h \
|
||||||
|
iso646.h \
|
||||||
|
langinfo.h \
|
||||||
|
monetary.h \
|
||||||
|
net/if.h \
|
||||||
|
netdb.h \
|
||||||
|
netinet/in.h \
|
||||||
|
netinet/tcp.h \
|
||||||
|
nl_types.h \
|
||||||
|
poll.h \
|
||||||
|
spawn.h \
|
||||||
|
stdbool.h \
|
||||||
|
stdint.h \
|
||||||
|
strings.h \
|
||||||
|
sys/select.h \
|
||||||
|
sys/socket.h \
|
||||||
|
sys/statvfs.h \
|
||||||
|
sys/un.h \
|
||||||
|
tgmath.h \
|
||||||
|
wchar.h \
|
||||||
|
wctype.h \
|
||||||
|
# conformtest-headers-POSIX2008
|
||||||
|
# Missing XOPEN2K8 expectations for:
|
||||||
|
# trace.h
|
||||||
|
conformtest-headers-XOPEN2K8 := \
|
||||||
|
$(conformtest-headers-POSIX2008) \
|
||||||
|
fmtmsg.h \
|
||||||
|
ftw.h \
|
||||||
|
libgen.h \
|
||||||
|
ndbm.h \
|
||||||
|
search.h \
|
||||||
|
sys/ipc.h \
|
||||||
|
sys/msg.h \
|
||||||
|
sys/resource.h \
|
||||||
|
sys/sem.h \
|
||||||
|
sys/shm.h \
|
||||||
|
sys/time.h \
|
||||||
|
sys/uio.h \
|
||||||
|
syslog.h \
|
||||||
|
ulimit.h \
|
||||||
|
utmpx.h \
|
||||||
|
# conformtest-headers-XOPEN2K8
|
||||||
|
|
||||||
conformtest-header-list-base := $(foreach std,$(conformtest-standards),\
|
conformtest-header-list-base := $(foreach std,$(conformtest-standards),\
|
||||||
header-list-$(std).out)
|
header-list-$(std).out)
|
||||||
|
Loading…
Reference in New Issue
Block a user