mirror of git://sourceware.org/git/glibc.git
wcsmbs: Reformat Makefile.
Reflow Makefile. Sort using scripts/sort-makefile-lines.py. No code generation changes observed in binary artifacts. No regressions on x86_64 and i686.
This commit is contained in:
parent
dccee96e6d
commit
40b68e8cc0
|
@ -22,9 +22,17 @@ subdir := wcsmbs
|
||||||
|
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
||||||
headers := wchar.h bits/wchar.h bits/wchar2.h bits/wchar2-decl.h \
|
headers := \
|
||||||
bits/wchar-ldbl.h uchar.h bits/types/__mbstate_t.h \
|
bits/types/__mbstate_t.h \
|
||||||
bits/types/mbstate_t.h bits/types/wint_t.h
|
bits/types/mbstate_t.h \
|
||||||
|
bits/types/wint_t.h \
|
||||||
|
bits/wchar-ldbl.h \
|
||||||
|
bits/wchar.h \
|
||||||
|
bits/wchar2-decl.h \
|
||||||
|
bits/wchar2.h \
|
||||||
|
uchar.h \
|
||||||
|
wchar.h \
|
||||||
|
# headers
|
||||||
|
|
||||||
routines := \
|
routines := \
|
||||||
btowc \
|
btowc \
|
||||||
|
@ -123,11 +131,11 @@ tests := \
|
||||||
test-wcscmp \
|
test-wcscmp \
|
||||||
test-wcscpy \
|
test-wcscpy \
|
||||||
test-wcscspn \
|
test-wcscspn \
|
||||||
|
test-wcsdup \
|
||||||
test-wcslen \
|
test-wcslen \
|
||||||
test-wcsncat \
|
test-wcsncat \
|
||||||
test-wcsncmp \
|
test-wcsncmp \
|
||||||
test-wcsncpy \
|
test-wcsncpy \
|
||||||
test-wcsdup \
|
|
||||||
test-wcsnlen \
|
test-wcsnlen \
|
||||||
test-wcspbrk \
|
test-wcspbrk \
|
||||||
test-wcsrchr \
|
test-wcsrchr \
|
||||||
|
@ -169,8 +177,17 @@ tests := \
|
||||||
include ../Rules
|
include ../Rules
|
||||||
|
|
||||||
ifeq ($(run-built-tests),yes)
|
ifeq ($(run-built-tests),yes)
|
||||||
LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 hr_HR.ISO-8859-2 \
|
LOCALES := \
|
||||||
ja_JP.EUC-JP zh_TW.EUC-TW tr_TR.UTF-8 tr_TR.ISO-8859-9 zh_HK.BIG5-HKSCS
|
de_DE.ISO-8859-1 \
|
||||||
|
de_DE.UTF-8 \
|
||||||
|
en_US.ANSI_X3.4-1968 \
|
||||||
|
hr_HR.ISO-8859-2 \
|
||||||
|
ja_JP.EUC-JP \
|
||||||
|
tr_TR.ISO-8859-9 \
|
||||||
|
tr_TR.UTF-8 \
|
||||||
|
zh_HK.BIG5-HKSCS \
|
||||||
|
zh_TW.EUC-TW \
|
||||||
|
# LOCALES
|
||||||
include ../gen-locales.mk
|
include ../gen-locales.mk
|
||||||
|
|
||||||
$(objpfx)tst-btowc.out: $(gen-locales)
|
$(objpfx)tst-btowc.out: $(gen-locales)
|
||||||
|
|
Loading…
Reference in New Issue