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