mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
locale: Sort Makefile variables.
Sort Makefile variables using scrips/sort-makefile-lines.py. No regressions on x86_64.
This commit is contained in:
parent
874214db62
commit
7190fd9ebf
114
locale/Makefile
114
locale/Makefile
@ -22,22 +22,77 @@ subdir := locale
|
||||
|
||||
include ../Makeconfig
|
||||
|
||||
headers = langinfo.h locale.h bits/locale.h \
|
||||
bits/types/locale_t.h bits/types/__locale_t.h
|
||||
routines = setlocale findlocale loadlocale loadarchive \
|
||||
localeconv nl_langinfo nl_langinfo_l mb_cur_max \
|
||||
newlocale duplocale freelocale uselocale
|
||||
tests = tst-C-locale tst-locname tst-duplocale
|
||||
tests-container = tst-localedef-path-norm
|
||||
categories = ctype messages monetary numeric time paper name \
|
||||
address telephone measurement identification collate
|
||||
aux = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc C_name \
|
||||
xlocale localename global-locale coll-lookup
|
||||
others = localedef locale
|
||||
#others-static = localedef locale
|
||||
install-bin = localedef locale
|
||||
extra-objs = $(localedef-modules:=.o) $(localedef-aux:=.o) \
|
||||
$(locale-modules:=.o) $(lib-modules:=.o)
|
||||
headers = \
|
||||
bits/locale.h \
|
||||
bits/types/__locale_t.h \
|
||||
bits/types/locale_t.h \
|
||||
langinfo.h \
|
||||
locale.h \
|
||||
# headers
|
||||
routines = \
|
||||
duplocale \
|
||||
findlocale \
|
||||
freelocale \
|
||||
loadarchive \
|
||||
loadlocale \
|
||||
localeconv \
|
||||
mb_cur_max \
|
||||
newlocale \
|
||||
nl_langinfo \
|
||||
nl_langinfo_l \
|
||||
setlocale \
|
||||
uselocale
|
||||
# routines
|
||||
tests = \
|
||||
tst-C-locale \
|
||||
tst-duplocale \
|
||||
tst-locname \
|
||||
# tests
|
||||
tests-container = \
|
||||
tst-localedef-path-norm \
|
||||
# tests-container
|
||||
categories = \
|
||||
address \
|
||||
collate \
|
||||
ctype \
|
||||
identification \
|
||||
measurement \
|
||||
messages \
|
||||
monetary \
|
||||
name \
|
||||
numeric \
|
||||
paper \
|
||||
telephone \
|
||||
time \
|
||||
# categories
|
||||
aux = \
|
||||
$(categories:%=C-%) \
|
||||
$(categories:%=lc-%) \
|
||||
C_name \
|
||||
SYS_libc \
|
||||
coll-lookup \
|
||||
global-locale \
|
||||
localename \
|
||||
xlocale \
|
||||
# aux
|
||||
others = \
|
||||
locale \
|
||||
localedef \
|
||||
# others
|
||||
#others-static = \
|
||||
# localedef \
|
||||
# locale \
|
||||
# # others-static
|
||||
install-bin = \
|
||||
locale \
|
||||
localedef \
|
||||
# install-bin
|
||||
extra-objs = \
|
||||
$(lib-modules:=.o) \
|
||||
$(locale-modules:=.o) \
|
||||
$(localedef-aux:=.o) \
|
||||
$(localedef-modules:=.o) \
|
||||
# extra-objs
|
||||
generated += C-translit.h
|
||||
before-compile += $(objpfx)C-translit.h
|
||||
|
||||
@ -51,14 +106,27 @@ vpath %.c programs
|
||||
vpath %.h programs
|
||||
vpath %.gperf programs
|
||||
|
||||
localedef-modules := localedef $(categories:%=ld-%) \
|
||||
charmap linereader locfile \
|
||||
repertoire locarchive
|
||||
localedef-modules := \
|
||||
charmap \
|
||||
linereader \
|
||||
localedef $(categories:%=ld-%) \
|
||||
locarchive \
|
||||
locfile \
|
||||
repertoire \
|
||||
# localedef-modules
|
||||
localedef-aux := md5
|
||||
locale-modules := locale locale-spec
|
||||
lib-modules := charmap-dir simple-hash xmalloc xstrdup \
|
||||
record-status xasprintf
|
||||
|
||||
locale-modules := \
|
||||
locale \
|
||||
locale-spec \
|
||||
# locale-modules
|
||||
lib-modules := \
|
||||
charmap-dir \
|
||||
record-status \
|
||||
simple-hash \
|
||||
xasprintf \
|
||||
xmalloc \
|
||||
xstrdup \
|
||||
# lib-modules
|
||||
|
||||
GPERF = gperf
|
||||
GPERFFLAGS = -acCgopt -k1,2,5,9,$$ -L ANSI-C
|
||||
|
Loading…
Reference in New Issue
Block a user