1 localedir = $(datadir)/locale
2 ACLOCAL_AMFLAGS = -I ../config
3 AM_CPPFLAGS = -I$(srcdir)/../include -I$(srcdir) @INCINTL@ \
4 -I$(srcdir)/include -DLOCALEDIR="\"$(localedir)\""
6 noinst_LIBRARIES = libcpp.a
8 charset.c directives.c errors.c expr.c files.c \
9 identifiers.c init.c lex.c line-map.c macro.c mkdeps.c \
10 pch.c symtab.c traditional.c
13 include/cpplib.h include/line-map.h include/mkdeps.h \
14 include/symtab.h internal.h system.h ucnid.h
18 noinst_PROGRAMS = makedepend
19 makedepend_LDADD = libcpp.a ../libiberty/libiberty.a $(LIBINTL) $(LIBICONV)
28 update-po: $(CATALOGS:.gmo=.pox)
34 # N.B. We do not attempt to copy these into $(srcdir).
36 -test -d po || mkdir po
37 $(GMSGFMT) --statistics -o $@ $<
39 # The new .po has to be gone over by hand, so we deposit it into
40 # build/po with a different extension.
41 # If build/po/$(PACKAGE).pot exists, use it (it was just created),
42 # else use the one in srcdir.
44 -test -d po || mkdir po
45 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
46 then echo po/$(PACKAGE).pot; \
47 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
49 # This rule has to look for .gmo modules in both srcdir and
50 # the cwd, and has to check that we actually have a catalog
51 # for each language, in case they weren't built or included
52 # with the distribution.
54 $(mkinstalldirs) $(DESTDIR)$(datadir)
55 cats="$(CATALOGS)"; for cat in $$cats; do \
56 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
57 if [ -f $$cat ]; then :; \
58 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
61 dir=$(localedir)/$$lang/LC_MESSAGES; \
62 echo $(mkinstalldirs) $(DESTDIR)$$dir; \
63 $(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \
64 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
65 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
68 # Rule for regenerating the message template (gcc.pot).
69 # Instead of forcing everyone to edit POTFILES.in, which proved impractical,
70 # this rule has no dependencies and always regenerates libcpp.pot. This is
71 # relatively harmless since the .po files do not directly depend on it.
72 .PHONY: po/$(PACKAGE).pot
73 po/$(PACKAGE).pot: $(libcpp_a_SOURCES) $(noinst_HEADERS)
74 -test -d $(srcdir)/po || mkdir $(srcdir)/po
75 $(XGETTEXT) --default-domain=$(PACKAGE) \
76 --keyword=cpp_error,3 --keyword=cpp_errno,3 \
77 --keyword=cpp_error_with_line,5 \
78 --copyright-holder="Free Software Foundation, Inc." \
79 --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
80 --language=c -o po/$(PACKAGE).pot $^