File: Makefile

package info (click to toggle)
dwdiff 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 540 kB
  • sloc: ansic: 4,072; sh: 685; makefile: 83; python: 20
file content (32 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright (C) 2006-2010 G.P. Halkes
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
.POSIX:

.PHONY: linguas lingua-install

.SUFFIXES: .mo .po

LINGUAOBJECTS=$(LINGUAS:=.mo)

linguas: $(LINGUAOBJECTS)

.po.mo:
	msgfmt -o $@ $<

lingua-install: $(LINGUAOBJECTS)
	for lingua in $(LINGUAS) ; do \
		if [ ! -f "$${lingua}.mo" ] ; then continue ; fi ;\
		$(INSTALL) -d "$(LOCALEDIR)/$${lingua}/LC_MESSAGES" ;\
		$(INSTALL) -m 644 "$${lingua}.mo" "$(LOCALEDIR)/$${lingua}/LC_MESSAGES/dwdiff.mo" ;\
	done