]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - locale/Makefile
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / Applicatio...
[thirdparty/cups.git] / locale / Makefile
... / ...
CommitLineData
1#
2# "$Id: Makefile 6993 2007-09-28 18:05:28Z mike $"
3#
4# Locale file makefile for the Common UNIX Printing System (CUPS).
5#
6# Copyright 2007-2008 by Apple Inc.
7# Copyright 1993-2007 by Easy Software Products.
8#
9# These coded instructions, statements, and computer programs are the
10# property of Apple Inc. and are protected by Federal copyright
11# law. Distribution and use rights are outlined in the file "LICENSE.txt"
12# which should have been included with this file. If this file is
13# file is missing or damaged, see the license at "http://www.cups.org/".
14#
15
16include ../Makedefs
17
18
19OBJS = checkpo.o po2strings.o strings2po.o translate.o
20TARGETS = checkpo po2strings strings2po translate
21
22
23#
24# Make everything...
25#
26
27all: $(TARGETS)
28
29
30#
31# Clean all config and object files...
32#
33
34clean:
35 $(RM) $(TARGETS) $(OBJS)
36
37
38#
39# Update dependencies (without system header dependencies...)
40#
41
42depend:
43 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
44
45
46#
47# Install all targets...
48#
49
50install: all install-data install-headers install-libs install-exec
51
52
53#
54# Install data files...
55#
56
57install-data: $(INSTALL_LANGUAGES)
58
59install-languages:
60 $(INSTALL_DIR) -m 755 $(LOCALEDIR)
61 for loc in $(LANGUAGES) ; do \
62 if test -f cups_$$loc.po; then \
63 $(INSTALL_DIR) -m 755 $(LOCALEDIR)/$$loc ; \
64 $(INSTALL_DATA) cups_$$loc.po $(LOCALEDIR)/$$loc/cups_$$loc.po ; \
65 $(INSTALL_DATA) ppdc_$$loc.po $(LOCALEDIR)/$$loc/ppdc_$$loc.po ; \
66 fi ; \
67 done
68
69
70#
71# Install programs...
72#
73
74install-exec:
75
76
77#
78# Install headers...
79#
80
81install-headers:
82
83
84#
85# Install libraries...
86#
87
88install-libs:
89
90
91#
92# Uninstall files...
93#
94
95uninstall: $(UNINSTALL_LANGUAGES)
96
97uninstall-languages:
98 -for loc in $(LANGUAGES) ; do \
99 $(RM) $(LOCALEDIR)/$$loc/cups_$$loc.po ; \
100 $(RM) $(LOCALEDIR)/$$loc/ppdc_$$loc.po ; \
101 done
102
103
104#
105# pot - Creates/updates the cups.pot template file, and merges changes
106# into existing message catalogs.
107#
108
109pot:
110 echo Updating cups.pot...
111 mv cups.pot cups.pot.bck
112 touch cups.pot
113 cd ..; xgettext -o locale/cups.pot -j -s --keyword=_ --no-wrap \
114 --copyright-holder="Easy Software Products" \
115 --msgid-bugs-address="http://www.cups.org/str.php" \
116 */*.c
117 (cat cups.header; \
118 cat cups.pot | sed -e '1,6d' -e '1,$$s/PACKAGE VERSION/CUPS 1.3/' \
119 -e '1,$$s/charset=CHARSET/charset=utf-8/'; \
120 cat cups.footer) > cups.pot.N
121 mv cups.pot.N cups.pot
122 for loc in $(LANGUAGES) ; do \
123 echo Merging changes into cups_$$loc.po... ; \
124 msgmerge -o cups_$$loc.po -s -N --no-location cups_$$loc.po cups.pot ; \
125 done
126
127
128#
129# checkpo - A simple utility to check PO files for correct translation
130# strings.
131#
132# checkpo filename.po [... filenameN.po]
133#
134
135checkpo: checkpo.o ../cups/$(LIBCUPS)
136 echo Linking $<...
137 $(CC) $(LDFLAGS) -o checkpo checkpo.o $(LIBS)
138
139
140#
141# po2strings - A simple utility which uses iconv to convert GNU gettext
142# message catalogs to Mac OS X .strings files.
143#
144# po2strings filename.po filename.strings
145#
146
147po2strings: po2strings.o ../cups/$(LIBCUPS)
148 echo Linking $<...
149 $(CC) $(LDFLAGS) -o po2strings po2strings.o $(LIBS)
150
151
152#
153# strings2po - A simple utility which uses iconv to convert Mac OS X
154# .strings files to GNU gettext message catalogs.
155#
156# strings2po filename.strings filename.po
157#
158
159strings2po: strings2po.o
160 echo Linking $<...
161 $(CC) $(LDFLAGS) -o strings2po strings2po.o
162
163
164#
165# translate - A simple utility which uses Google to translate the cups.pot
166# file to one of several languages.
167#
168# translate outfile language
169#
170
171translate: translate.o ../cups/$(LIBCUPS)
172 echo Linking $<...
173 $(CC) $(LDFLAGS) -o translate translate.o $(LIBS)
174
175
176#
177# Dependencies...
178#
179
180include Dependencies
181
182
183#
184# End of "$Id: Makefile 6993 2007-09-28 18:05:28Z mike $".
185#