File: Makefile.in

package info (click to toggle)
brltty 5.3.1-1~bpo7%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports-sloppy
  • size: 27,840 kB
  • sloc: ansic: 114,325; sh: 6,496; java: 4,721; xml: 3,119; makefile: 1,861; tcl: 1,478; awk: 611; ml: 293; python: 250
file content (67 lines) | stat: -rw-r--r-- 2,269 bytes parent folder | download
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
###############################################################################
# BRLTTY - A background process providing access to the console screen (when in
#          text mode) for a blind person using a refreshable braille display.
#
# Copyright (C) 1995-2015 by The BRLTTY Developers.
#
# BRLTTY comes with ABSOLUTELY NO WARRANTY.
#
# This is free software, placed under the terms of the
# GNU General Public License, as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any
# later version. Please see the file LICENSE-GPL for details.
#
# Web Page: http://brltty.com/
#
# This software is maintained by Dave Mielke <dave@mielke.cc>.
###############################################################################

all:: objects languages

COPYRIGHT_HOLDER = The BRLTTY Developers
LANGUAGE_CODES = de fr zh

TEMPLATE_EXTENSION = pot
SOURCE_EXTENSION = po
OBJECT_EXTENSION = mo

LANGUAGES_FILE = LINGUAS
languages: $(LANGUAGES_FILE)

$(LANGUAGES_FILE): FORCE
	: >$@; \
	for language in $(LANGUAGE_CODES); do \
	echo $$language >>$@; \
	done

TEMPLATE_FILE = $(SRC_DIR)/$(PACKAGE_TARNAME).$(TEMPLATE_EXTENSION)
template $(TEMPLATE_EXTENSION): $(TEMPLATE_FILE)

#$(TEMPLATE_FILE): $(BLD_TOP)$(PGM_DIR)/cmds.auto.h FORCE
#	$(SRC_TOP)mkpot -p "$(PACKAGE_TARNAME)" -n "$(PACKAGE_VERSION)" -o $@ -b "$(PACKAGE_BUGREPORT)" -c "$(COPYRIGHT_HOLDER)" $(SRC_TOP) $(BLD_TOP)

SOURCE_FILES = $(LANGUAGE_CODES:=.$(SOURCE_EXTENSION))
sources: $(SOURCE_FILES)

%.$(SOURCE_EXTENSION): FORCE
	$(MSGMERGE) --quiet --force-po --no-wrap --update -- $(SRC_DIR)/$@ $(TEMPLATE_FILE)

OBJECT_FILES = $(LANGUAGE_CODES:=.$(OBJECT_EXTENSION))
objects: $(OBJECT_FILES)

%.$(OBJECT_EXTENSION):
	$(MSGFMT) --output-file $@ $(SRC_DIR)/$(@F:.$(OBJECT_EXTENSION)=.$(SOURCE_EXTENSION))

clean::
	-rm -f -- *.$(OBJECT_EXTENSION) *~

install:: objects install-locale-directory
	for language in $(LANGUAGE_CODES); do \
	directory="$(INSTALL_LOCALE_DIRECTORY)/$${language}/LC_MESSAGES" && \
        $(INSTALL_DIRECTORY) "$${directory}" && \
	$(INSTALL_DATA) "$${language}.$(OBJECT_EXTENSION)" "$${directory}/$(PACKAGE_TARNAME).$(OBJECT_EXTENSION)"; \
	done

uninstall::
	-rm -f -- $(INSTALL_LOCALE_DIRECTORY)/*/*/$(PACKAGE_TARNAME).$(OBJECT_EXTENSION)