mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-13 01:47:05 +08:00
One file per line seems best. We already did this in some cases. This adopts the same format everywhere (except in some cases where the list reasonably fits on one line).
23 lines
917 B
Makefile
23 lines
917 B
Makefile
# src/bin/scripts/nls.mk
|
|
CATALOG_NAME = pgscripts
|
|
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
|
|
createdb.c \
|
|
createuser.c \
|
|
dropdb.c \
|
|
dropuser.c \
|
|
clusterdb.c \
|
|
vacuumdb.c \
|
|
reindexdb.c \
|
|
pg_isready.c \
|
|
common.c \
|
|
../../fe_utils/parallel_slot.c \
|
|
../../fe_utils/cancel.c \
|
|
../../fe_utils/print.c \
|
|
../../fe_utils/connect_utils.c \
|
|
../../fe_utils/option_utils.c \
|
|
../../fe_utils/query_utils.c \
|
|
../../common/fe_memutils.c \
|
|
../../common/username.c
|
|
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) simple_prompt yesno_prompt
|
|
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS)
|