blob: 1a2688f3962bc7cc541ed5f76f017b1c9ea41f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $Header: /cvsroot/pgsql/src/backend/nls.mk,v 1.4 2003/06/28 22:30:59 petere Exp $
CATALOG_NAME := postgres
AVAIL_LANGUAGES := cs de es hr hu ru sv tr zh_CN zh_TW
GETTEXT_FILES := + gettext-files
GETTEXT_TRIGGERS:= elog:2 postmaster_error yyerror
gettext-files:
find $(srcdir)/ -name '*.c' -print >$@
my-maintainer-clean:
rm -f gettext-files
.PHONY: my-maintainer-clean
maintainer-clean: my-maintainer-clean
|