]> git.ipfire.org Git - thirdparty/cups.git/blob - locale/Makefile
Copyright update.
[thirdparty/cups.git] / locale / Makefile
1 #
2 # "$Id: Makefile,v 1.8.2.6 2003/01/07 18:27:04 mike Exp $"
3 #
4 # Locale file makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2003 by Easy Software Products.
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-3111 USA
19 #
20 # Voice: (301) 373-9603
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24
25 include ../Makedefs
26
27 #
28 # Locales...
29 #
30
31 LOCALES = C be cs de en es fr he it ru_RU.koi8r ru_RU.cp1251 \
32 sv uk uk_UA.cp1251 zh_CN
33
34
35 #
36 # Make everything...
37 #
38
39 all: translate
40
41
42 #
43 # Clean all config and object files...
44 #
45
46 clean:
47
48
49 #
50 # Install files...
51 #
52
53 install:
54 $(INSTALL_DIR) $(LOCALEDIR)
55 for dir in $(LOCALES) ; do \
56 $(INSTALL_DIR) $(LOCALEDIR)/$$dir ; \
57 $(INSTALL_DATA) $$dir/cups_$$dir $(LOCALEDIR)/$$dir ; \
58 done
59
60
61 #
62 # translate - a simple utility to use Bablefish to translate the POSIX message
63 # file to one of several languages.
64 #
65 # translate outfile language
66 #
67
68 translate: translate.o ../cups/$(LIBCUPS)
69 echo Linking $<...
70 $(CC) $(LDFLAGS) -o translate translate.o $(LIBS)
71
72 translate.o: ../cups/http.h
73
74
75 #
76 # End of "$Id: Makefile,v 1.8.2.6 2003/01/07 18:27:04 mike Exp $".
77 #