]> git.ipfire.org Git - thirdparty/cups.git/blame - locale/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / locale / Makefile
CommitLineData
ef416fc2 1#
b423cd4c 2# "$Id: Makefile 5193 2006-02-27 20:27:07Z mike $"
ef416fc2 3#
4# Locale file makefile for the Common UNIX Printing System (CUPS).
5#
fa73b229 6# Copyright 1993-2006 by Easy Software Products.
ef416fc2 7#
8# These coded instructions, statements, and computer programs are the
9# property of Easy Software Products and are protected by Federal
10# copyright law. Distribution and use rights are outlined in the file
11# "LICENSE.txt" which should have been included with this file. If this
12# file is missing or damaged please contact Easy Software Products
13# at:
14#
15# Attn: CUPS Licensing Information
16# Easy Software Products
17# 44141 Airport View Drive, Suite 204
18# Hollywood, Maryland 20636 USA
19#
20# Voice: (301) 373-9600
21# EMail: cups-info@cups.org
22# WWW: http://www.cups.org
23#
24
25include ../Makedefs
26
27#
28# Locales...
29#
30
b423cd4c 31LOCALES = ja
ef416fc2 32
33
34#
35# Make everything...
36#
37
38all: translate
39
40
41#
42# Clean all config and object files...
43#
44
45clean:
46 $(RM) translate translate.o
47
48
bd7854cb 49#
50# Update dependencies...
51#
52
53depend:
54
55
ef416fc2 56#
57# Install files...
58#
59
fa73b229 60install: all
bd7854cb 61 $(INSTALL_DIR) -m 755 $(LOCALEDIR)
ef416fc2 62 for loc in $(LOCALES) ; do \
bd7854cb 63 $(INSTALL_DIR) -m 755 $(LOCALEDIR)/$$loc ; \
64 $(INSTALL_DATA) cups_$$loc.po $(LOCALEDIR)/$$loc/cups_$$loc.po ; \
ef416fc2 65 done
66
67
68#
69# pot - Creates/updates the cups.pot template file, and merges changes
70# into existing message catalogs.
71#
72
73pot:
74 echo Updating cups.pot...
75 cd ..; xgettext -o locale/cups.pot -j --keyword=_ --no-wrap \
76 --copyright-holder="Easy Software Products" \
77 --msgid-bugs-address="http://www.cups.org/str.php" \
78 */*.c
79 (cat cups.header; \
80 tail +6 cups.pot | sed -e '1,$$s/PACKAGE VERSION/CUPS 1.2/' \
81 -e '1,$$s/charset=CHARSET/charset=utf-8/'; \
82 cat cups.footer) > cups.pot.N
83 mv cups.pot.N cups.pot
84 for loc in $(LOCALES) ; do \
85 echo Merging changes into cups_$$loc.po... ; \
86 msgmerge -o cups_$$loc.po cups_$$loc.po cups.pot ; \
87 done
88
89
90#
91# translate - A simple utility which uses Google to translate the cups.pot
92# file to one of several languages.
93#
94# translate outfile language
95#
96
97translate: translate.o ../cups/$(LIBCUPS)
98 echo Linking $<...
99 $(CC) $(LDFLAGS) -o translate translate.o $(LIBS)
100
101translate.o: ../cups/http.h ../cups/i18n.h ../cups/language.h ../cups/string.h
102
103
104#
b423cd4c 105# End of "$Id: Makefile 5193 2006-02-27 20:27:07Z mike $".
ef416fc2 106#