mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
socket: Reformat Makefile.
Reflow Makefile. Sort using scripts/sort-makefile-lines.py. Code generation is changed as routines are linked in sorted order as expected. No regressions on x86_64 and i686.
This commit is contained in:
parent
20b6ae7e3b
commit
bc57361e51
@ -22,20 +22,49 @@ subdir := socket
|
||||
|
||||
include ../Makeconfig
|
||||
|
||||
headers := sys/socket.h sys/un.h bits/sockaddr.h bits/socket.h \
|
||||
bits/socket2.h bits/types/struct_osockaddr.h \
|
||||
sys/socketvar.h net/if.h
|
||||
headers := \
|
||||
bits/sockaddr.h \
|
||||
bits/socket.h \
|
||||
bits/socket2.h \
|
||||
bits/types/struct_osockaddr.h \
|
||||
net/if.h \
|
||||
sys/socket.h \
|
||||
sys/socketvar.h \
|
||||
sys/un.h \
|
||||
# headers
|
||||
|
||||
routines := accept bind connect getpeername getsockname getsockopt \
|
||||
listen recv recvfrom recvmsg send sendmsg sendto \
|
||||
setsockopt shutdown socket socketpair isfdtype opensock \
|
||||
sockatmark accept4 recvmmsg sendmmsg sockaddr_un_set
|
||||
routines := \
|
||||
accept \
|
||||
accept4 \
|
||||
bind \
|
||||
connect \
|
||||
getpeername \
|
||||
getsockname \
|
||||
getsockopt \
|
||||
isfdtype \
|
||||
listen \
|
||||
opensock \
|
||||
recv \
|
||||
recvfrom \
|
||||
recvmmsg \
|
||||
recvmsg \
|
||||
send \
|
||||
sendmmsg \
|
||||
sendmsg \
|
||||
sendto \
|
||||
setsockopt \
|
||||
shutdown \
|
||||
sockaddr_un_set \
|
||||
sockatmark \
|
||||
socket \
|
||||
socketpair \
|
||||
# routines
|
||||
|
||||
tests := \
|
||||
tst-accept4 \
|
||||
tst-sockopt \
|
||||
tst-cmsghdr \
|
||||
tst-cmsg_cloexec \
|
||||
tst-cmsghdr \
|
||||
tst-sockopt \
|
||||
# tests
|
||||
|
||||
tests-internal := \
|
||||
|
Loading…
Reference in New Issue
Block a user