mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
stdio-common: 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
bc57361e51
commit
c3004417af
1 changed files with 20 additions and 10 deletions
|
@ -22,7 +22,12 @@ subdir := stdio-common
|
||||||
|
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
||||||
headers := stdio_ext.h printf.h bits/printf-ldbl.h bits/stdio_lim.h
|
headers := \
|
||||||
|
bits/printf-ldbl.h \
|
||||||
|
bits/stdio_lim.h \
|
||||||
|
printf.h \
|
||||||
|
stdio_ext.h \
|
||||||
|
# headers
|
||||||
|
|
||||||
routines := \
|
routines := \
|
||||||
_itoa \
|
_itoa \
|
||||||
|
@ -41,18 +46,18 @@ routines := \
|
||||||
getw \
|
getw \
|
||||||
grouping_iterator \
|
grouping_iterator \
|
||||||
iovfscanf \
|
iovfscanf \
|
||||||
isoc99_fscanf \
|
|
||||||
isoc99_scanf \
|
|
||||||
isoc99_sscanf \
|
|
||||||
isoc99_vfscanf \
|
|
||||||
isoc99_vscanf \
|
|
||||||
isoc99_vsscanf \
|
|
||||||
isoc23_fscanf \
|
isoc23_fscanf \
|
||||||
isoc23_scanf \
|
isoc23_scanf \
|
||||||
isoc23_sscanf \
|
isoc23_sscanf \
|
||||||
isoc23_vfscanf \
|
isoc23_vfscanf \
|
||||||
isoc23_vscanf \
|
isoc23_vscanf \
|
||||||
isoc23_vsscanf \
|
isoc23_vsscanf \
|
||||||
|
isoc99_fscanf \
|
||||||
|
isoc99_scanf \
|
||||||
|
isoc99_sscanf \
|
||||||
|
isoc99_vfscanf \
|
||||||
|
isoc99_vscanf \
|
||||||
|
isoc99_vsscanf \
|
||||||
itoa-digits \
|
itoa-digits \
|
||||||
itoa-udigits \
|
itoa-udigits \
|
||||||
itowa-digits \
|
itowa-digits \
|
||||||
|
@ -238,9 +243,9 @@ tests := \
|
||||||
tst-unlockedio \
|
tst-unlockedio \
|
||||||
tst-vfprintf-mbs-prec \
|
tst-vfprintf-mbs-prec \
|
||||||
tst-vfprintf-user-type \
|
tst-vfprintf-user-type \
|
||||||
|
tst-vfprintf-width-i18n \
|
||||||
tst-vfprintf-width-prec \
|
tst-vfprintf-width-prec \
|
||||||
tst-vfprintf-width-prec-alloc \
|
tst-vfprintf-width-prec-alloc \
|
||||||
tst-vfprintf-width-i18n \
|
|
||||||
tst-wc-printf \
|
tst-wc-printf \
|
||||||
tstdiomisc \
|
tstdiomisc \
|
||||||
tstgetln \
|
tstgetln \
|
||||||
|
@ -250,6 +255,7 @@ tests := \
|
||||||
|
|
||||||
tests-container += \
|
tests-container += \
|
||||||
tst-popen3
|
tst-popen3
|
||||||
|
# tests-container
|
||||||
|
|
||||||
generated += \
|
generated += \
|
||||||
errlist-data-aux-shared.S \
|
errlist-data-aux-shared.S \
|
||||||
|
@ -262,7 +268,11 @@ tests-internal = \
|
||||||
tst-grouping_iterator \
|
tst-grouping_iterator \
|
||||||
# tests-internal
|
# tests-internal
|
||||||
|
|
||||||
test-srcs = tst-unbputc tst-printf tst-printfsz-islongdouble
|
test-srcs = \
|
||||||
|
tst-printf \
|
||||||
|
tst-printfsz-islongdouble \
|
||||||
|
tst-unbputc \
|
||||||
|
# test-srcs
|
||||||
|
|
||||||
ifeq ($(run-built-tests),yes)
|
ifeq ($(run-built-tests),yes)
|
||||||
tests-special += \
|
tests-special += \
|
||||||
|
@ -340,7 +350,7 @@ LOCALES := \
|
||||||
ja_JP.EUC-JP \
|
ja_JP.EUC-JP \
|
||||||
ps_AF.UTF-8 \
|
ps_AF.UTF-8 \
|
||||||
tg_TJ.UTF-8 \
|
tg_TJ.UTF-8 \
|
||||||
# LOCALES
|
# LOCALES
|
||||||
include ../gen-locales.mk
|
include ../gen-locales.mk
|
||||||
|
|
||||||
$(objpfx)bug14.out: $(gen-locales)
|
$(objpfx)bug14.out: $(gen-locales)
|
||||||
|
|
Loading…
Add table
Reference in a new issue