~ubuntu-branches/ubuntu/maverick/transmission/maverick

« back to all changes in this revision

Viewing changes to mk/po.mk

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2006-08-29 20:50:41 UTC
  • Revision ID: james.westby@ubuntu.com-20060829205041-mzhpiqksdf7pbk17
Tags: upstream-0.6.1.dfsg
ImportĀ upstreamĀ versionĀ 0.6.1.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: po.mk 265 2006-05-31 12:54:53Z titer $
 
2
 
 
3
include ../../mk/config.mk
 
4
include ../../mk/common.mk
 
5
 
 
6
POFILES = $(wildcard *.po)
 
7
MOFILES = $(POFILES:%.po=%.mo)
 
8
 
 
9
all: $(MOFILES)
 
10
        @true
 
11
 
 
12
%.mo: %.po ../../mk/config.mk ../../mk/common.mk ../../mk/po.mk
 
13
        $(MSGFMT_RULE)
 
14
 
 
15
%.mo.install: %.mo
 
16
        $(INSTALL_LOCALE_RULE)
 
17
 
 
18
clean:
 
19
        @echo "Clean $(MOFILES)"
 
20
        @$(RM) $(MOFILES)
 
21
 
 
22
install: $(MOFILES) $(MOFILES:%.mo=%.mo.install)
 
23
 
 
24
-include .depend