mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
catgets: Reformat Makefile.
Reflow all long lines adding comment terminators. Sort all reflowed text 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
85c3569cf4
commit
5729b8ff31
1 changed files with 29 additions and 9 deletions
|
@ -22,8 +22,13 @@ subdir := catgets
|
||||||
|
|
||||||
include ../Makeconfig
|
include ../Makeconfig
|
||||||
|
|
||||||
headers = nl_types.h
|
headers = \
|
||||||
routines = catgets open_catalog
|
nl_types.h \
|
||||||
|
# headers
|
||||||
|
routines = \
|
||||||
|
catgets \
|
||||||
|
open_catalog \
|
||||||
|
# routines
|
||||||
others = gencat
|
others = gencat
|
||||||
install-bin = gencat
|
install-bin = gencat
|
||||||
extra-objs = $(gencat-modules:=.o)
|
extra-objs = $(gencat-modules:=.o)
|
||||||
|
@ -32,9 +37,14 @@ tests = tst-catgets
|
||||||
test-srcs = test-gencat
|
test-srcs = test-gencat
|
||||||
|
|
||||||
ifeq ($(run-built-tests),yes)
|
ifeq ($(run-built-tests),yes)
|
||||||
tests-special += $(objpfx)de/libc.cat $(objpfx)test1.cat $(objpfx)test2.cat \
|
tests-special += \
|
||||||
$(objpfx)sample.SJIS.cat $(objpfx)test-gencat.out
|
$(objpfx)de/libc.cat \
|
||||||
tests-special += $(objpfx)tst-catgets-mem.out
|
$(objpfx)sample.SJIS.cat \
|
||||||
|
$(objpfx)test-gencat.out \
|
||||||
|
$(objpfx)test1.cat \
|
||||||
|
$(objpfx)test2.cat \
|
||||||
|
$(objpfx)tst-catgets-mem.out
|
||||||
|
# tests-special
|
||||||
endif
|
endif
|
||||||
|
|
||||||
gencat-modules = xmalloc
|
gencat-modules = xmalloc
|
||||||
|
@ -50,11 +60,21 @@ $(objpfx)gencat: $(gencat-modules:%=$(objpfx)%.o)
|
||||||
|
|
||||||
catgets-CPPFLAGS := -DNLSPATH='"$(localedir)/%L/%N:$(localedir)/%L/LC_MESSAGES/%N:$(localedir)/%l/%N:$(localedir)/%l/LC_MESSAGES/%N:"'
|
catgets-CPPFLAGS := -DNLSPATH='"$(localedir)/%L/%N:$(localedir)/%L/LC_MESSAGES/%N:$(localedir)/%l/%N:$(localedir)/%l/LC_MESSAGES/%N:"'
|
||||||
|
|
||||||
generated += de.msg test1.cat test1.h test2.cat test2.h sample.SJIS.cat \
|
generated += \
|
||||||
test-gencat.h
|
de.msg \
|
||||||
generated += tst-catgets.mtrace tst-catgets-mem.out
|
sample.SJIS.cat \
|
||||||
|
test-gencat.h \
|
||||||
|
test1.cat \
|
||||||
|
test1.h \
|
||||||
|
test2.cat \
|
||||||
|
test2.h \
|
||||||
|
tst-catgets-mem.out \
|
||||||
|
tst-catgets.mtrace \
|
||||||
|
# generated
|
||||||
|
|
||||||
generated-dirs += de
|
generated-dirs += \
|
||||||
|
de \
|
||||||
|
# generated-dirs
|
||||||
|
|
||||||
tst-catgets-ENV = NLSPATH="$(objpfx)%l/%N.cat" LANG=de \
|
tst-catgets-ENV = NLSPATH="$(objpfx)%l/%N.cat" LANG=de \
|
||||||
MALLOC_TRACE=$(objpfx)tst-catgets.mtrace \
|
MALLOC_TRACE=$(objpfx)tst-catgets.mtrace \
|
||||||
|
|
Loading…
Add table
Reference in a new issue