1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
# $Id: Makefile,v 1.19 2002/12/18 00:23:28 azummo Exp $
# XXX - It would be nice to arrange things so that the <lang>.po files
# aren't modified all the time (and cause CVS to think the file has
# changed, when all that has changed is some line numbers in the
# comments). Presumably, then, should either remove line numbers from
# the .po files (yuck!) or not feed changes back into .po files (but
# then this loses information about added and removed messages).
TOP = ..
SUBDIR = i18n
# LANGS: list of all languages/locales for which there is a translation
LANGS = fr de it cs ru ja pt_BR
POFILES = ${LANGS:=.po}
MOFILES = ${LANGS:=.mo}
# 'xgettext' gets confused by some of the lex regular expressions, so
# we get the strings from lex.yy.c instead of src/lexer.l
INPUTFILES = \
${TOP}/libpconn/PConnection.c \
${TOP}/libpconn/PConnection_net.c \
${TOP}/libpconn/PConnection_serial.c \
${TOP}/libpconn/PConnection_usb.c \
${TOP}/libpconn/cfmakeraw.c \
${TOP}/libpconn/cmp.c \
${TOP}/libpconn/dlp.c \
${TOP}/libpconn/dlp_cmd.c \
${TOP}/libpconn/dlp_rpc.c \
${TOP}/libpconn/netsync.c \
${TOP}/libpconn/padp.c \
${TOP}/libpconn/palm_errno.c \
${TOP}/libpconn/slp.c \
${TOP}/libpconn/util.c \
${TOP}/libpdb/pdb.c \
${TOP}/src/archive.c \
${TOP}/src/backup.c \
${TOP}/src/coldsync.c \
${TOP}/src/conduit.c \
${TOP}/src/config.c \
${TOP}/src/install.c \
${TOP}/src/lex.yy.c \
${TOP}/src/log.c \
${TOP}/src/misc.c \
${TOP}/src/parser.y \
${TOP}/src/pref.c \
${TOP}/src/restore.c \
${TOP}/src/spalm.c \
${TOP}/src/spc.c \
${TOP}/src/net_compat.c \
${TOP}/src/conduits/generic.cc
# XXX there are a lot of files to be added here.
DISTFILES = Makefile \
messages.po \
${POFILES}
CLEAN = core *.core *.bak *~ errs errs.* ${MOFILES}
SPOTLESS = messages.po
include ${TOP}/Make.rules
all:: ${MOFILES}
messages.po:: ${INPUTFILES}
${XGETTEXT} -LC++ -s -k_ -kN_ -o $@ ${INPUTFILES}
# I thought I needed to include this line, but things seems to work
# without it. Oh, well. Here it is, in case it turns out to be
# necessary after all.
# ${XGETTEXT} -D${TOP} -LC++ -f FILES.C++ -j -s -k_ -kN_ -o $@ -D`pwd`
# XXX - There's probably a better way to do this so that things work
# whether or not the user has i18n turned on or not.
${POFILES}: messages.po
if [ ! -f "$@" ]; then \
touch "$@"; \
fi
${MSGMERGE} -v -o temp.pox "$@" messages.po
if [ -f temp.pox ]; then \
cp temp.pox "$@"; \
rm -f temp.pox; \
fi
# ${INSTALL_I18N} is either "yes" or "no", depending on whether 'configure'
# was run with "--without-i18n", and whether all the requisite tools could
# be found.
install:: install-i18n-${INSTALL_I18N}
# Install the message catalogs
install-i18n-yes: ${MOFILES}
@langs="${LANGS}"; \
for lang in $$langs; do \
echo "${MKDIR} ${LOCALEDIR}/$$lang/LC_MESSAGES"; \
${MKDIR} "${LOCALEDIR}/$$lang/LC_MESSAGES"; \
${INSTALL_DATA} "$$lang.mo" \
"${LOCALEDIR}/$$lang/LC_MESSAGES/${PACKAGE}.mo"; \
done
# Do nothing.
install-i18n-no:
${TOP}/src/lex.yy.c:
cd ${TOP}/src && ${MAKE} lex.yy.c
# This is for Emacs's benefit:
# Local Variables: ***
# fill-column: 75 ***
# End: ***
|