mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
Fix and sort variables in Makefiles
Fix variables in Makefiles: 1. There is a tab, not a space, between "variable" and =, +=, :=. 2. The last entry doesn't have a trailing \. and sort them. Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
This commit is contained in:
parent
776938e8b8
commit
00de38e531
6 changed files with 72 additions and 72 deletions
|
@ -23,27 +23,27 @@ include ../Makeconfig
|
||||||
|
|
||||||
# Installed header files.
|
# Installed header files.
|
||||||
headers := \
|
headers := \
|
||||||
math.h \
|
|
||||||
bits/mathcalls.h \
|
|
||||||
fpu_control.h \
|
|
||||||
complex.h \
|
|
||||||
bits/cmathcalls.h \
|
bits/cmathcalls.h \
|
||||||
fenv.h \
|
|
||||||
bits/fenv.h \
|
bits/fenv.h \
|
||||||
bits/mathdef.h \
|
bits/floatn-common.h \
|
||||||
tgmath.h \
|
bits/floatn.h \
|
||||||
bits/math-vector.h \
|
|
||||||
finclude/math-vector-fortran.h \
|
|
||||||
bits/libm-simd-decl-stubs.h \
|
|
||||||
bits/iscanonical.h \
|
|
||||||
bits/flt-eval-method.h \
|
bits/flt-eval-method.h \
|
||||||
bits/fp-fast.h \
|
bits/fp-fast.h \
|
||||||
bits/fp-logb.h \
|
bits/fp-logb.h \
|
||||||
|
bits/iscanonical.h \
|
||||||
|
bits/libm-simd-decl-stubs.h \
|
||||||
bits/long-double.h \
|
bits/long-double.h \
|
||||||
|
bits/math-vector.h \
|
||||||
bits/mathcalls-helper-functions.h \
|
bits/mathcalls-helper-functions.h \
|
||||||
bits/floatn.h \
|
bits/mathcalls-narrow.h \
|
||||||
bits/floatn-common.h \
|
bits/mathcalls.h \
|
||||||
bits/mathcalls-narrow.h
|
bits/mathdef.h \
|
||||||
|
complex.h \
|
||||||
|
fenv.h \
|
||||||
|
finclude/math-vector-fortran.h \
|
||||||
|
fpu_control.h \
|
||||||
|
math.h \
|
||||||
|
tgmath.h \
|
||||||
# headers
|
# headers
|
||||||
|
|
||||||
# FPU support code.
|
# FPU support code.
|
||||||
|
|
102
misc/Makefile
102
misc/Makefile
|
@ -24,61 +24,61 @@ subdir := misc
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
||||||
headers := \
|
headers := \
|
||||||
sys/uio.h \
|
|
||||||
bits/uio-ext.h \
|
|
||||||
bits/uio_lim.h \
|
|
||||||
sys/ioctl.h \
|
|
||||||
bits/ioctls.h \
|
|
||||||
bits/ioctl-types.h \
|
|
||||||
sys/ptrace.h \
|
|
||||||
sys/file.h \
|
|
||||||
sys/dir.h \
|
|
||||||
sys/cdefs.h \
|
|
||||||
ar.h \
|
|
||||||
a.out.h \
|
a.out.h \
|
||||||
libgen.h \
|
ar.h \
|
||||||
stab.h \
|
|
||||||
bits/stab.def \
|
|
||||||
sgtty.h \
|
|
||||||
ttyent.h \
|
|
||||||
paths.h \
|
|
||||||
sys/reboot.h \
|
|
||||||
sys/mman.h \
|
|
||||||
sys/param.h \
|
|
||||||
bits/param.h \
|
|
||||||
fstab.h \
|
|
||||||
mntent.h \
|
|
||||||
search.h \
|
|
||||||
err.h \
|
|
||||||
error.h \
|
|
||||||
sys/queue.h \
|
|
||||||
sysexits.h \
|
|
||||||
syscall.h \
|
|
||||||
sys/syscall.h \
|
|
||||||
sys/swap.h \
|
|
||||||
sys/select.h \
|
|
||||||
sys/sysinfo.h \
|
|
||||||
regexp.h \
|
|
||||||
bits/select.h \
|
|
||||||
bits/mman.h \
|
|
||||||
sys/xattr.h \
|
|
||||||
syslog.h \
|
|
||||||
sys/syslog.h \
|
|
||||||
bits/syslog-decl.h \
|
|
||||||
bits/syslog.h \
|
|
||||||
bits/syslog-ldbl.h \
|
|
||||||
bits/syslog-path.h \
|
|
||||||
bits/error.h \
|
|
||||||
bits/select-decl.h \
|
|
||||||
bits/select2.h \
|
|
||||||
bits/hwcap.h \
|
|
||||||
sys/auxv.h \
|
|
||||||
sys/sysmacros.h \
|
|
||||||
bits/sysmacros.h \
|
|
||||||
bits/types/struct_iovec.h \
|
|
||||||
bits/err-ldbl.h \
|
bits/err-ldbl.h \
|
||||||
bits/error-ldbl.h \
|
bits/error-ldbl.h \
|
||||||
|
bits/error.h \
|
||||||
|
bits/hwcap.h \
|
||||||
|
bits/ioctl-types.h \
|
||||||
|
bits/ioctls.h \
|
||||||
|
bits/mman.h \
|
||||||
|
bits/param.h \
|
||||||
|
bits/select-decl.h \
|
||||||
|
bits/select.h \
|
||||||
|
bits/select2.h \
|
||||||
|
bits/stab.def \
|
||||||
|
bits/syslog-decl.h \
|
||||||
|
bits/syslog-ldbl.h \
|
||||||
|
bits/syslog-path.h \
|
||||||
|
bits/syslog.h \
|
||||||
|
bits/sysmacros.h \
|
||||||
|
bits/types/struct_iovec.h \
|
||||||
|
bits/uio-ext.h \
|
||||||
|
bits/uio_lim.h \
|
||||||
|
err.h \
|
||||||
|
error.h \
|
||||||
|
fstab.h \
|
||||||
|
libgen.h \
|
||||||
|
mntent.h \
|
||||||
|
paths.h \
|
||||||
|
regexp.h \
|
||||||
|
search.h \
|
||||||
|
sgtty.h \
|
||||||
|
stab.h \
|
||||||
|
sys/auxv.h \
|
||||||
|
sys/cdefs.h \
|
||||||
|
sys/dir.h \
|
||||||
|
sys/file.h \
|
||||||
|
sys/ioctl.h \
|
||||||
|
sys/mman.h \
|
||||||
|
sys/param.h \
|
||||||
|
sys/ptrace.h \
|
||||||
|
sys/queue.h \
|
||||||
|
sys/reboot.h \
|
||||||
|
sys/select.h \
|
||||||
sys/single_threaded.h \
|
sys/single_threaded.h \
|
||||||
|
sys/swap.h \
|
||||||
|
sys/syscall.h \
|
||||||
|
sys/sysinfo.h \
|
||||||
|
sys/syslog.h \
|
||||||
|
sys/sysmacros.h \
|
||||||
|
sys/uio.h \
|
||||||
|
sys/xattr.h \
|
||||||
|
syscall.h \
|
||||||
|
sysexits.h \
|
||||||
|
syslog.h \
|
||||||
|
ttyent.h \
|
||||||
# headers
|
# headers
|
||||||
|
|
||||||
routines := \
|
routines := \
|
||||||
|
|
Loading…
Add table
Reference in a new issue