File: Makefile.am

package info (click to toggle)
mssh 2.2-5.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,152 kB
  • sloc: sh: 1,938; ansic: 1,866; xml: 74; makefile: 41; sed: 16
file content (42 lines) | stat: -rw-r--r-- 1,363 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
SUBDIRS = src po

EXTRA_DIST = config.rpath mkinstalldirs m4/Makefile.in mssh_clusters.conf

data_convertdir = $(datadir)/GConf/gsettings
dist_data_convert_DATA = mssh.convert

gsettings_SCHEMAS = es.hgarcia.mssh.gschema.xml
EXTRA_DIST += $(gsettings_SCHEMAS)
@GSETTINGS_RULES@

man1_MANS = mssh.1

ACLOCAL_AMFLAGS = -I m4

check-gettext:
	@if test x$(USE_NLS) != "xyes" ; then echo "Missing gettext. Rerun configure and check for" \
    "'checking whether to use NLS... yes'!" ; exit 1 ; fi

update-po: check-gettext
	@find $(srcdir)/src/ -name "*.c" -print | sort > $(srcdir)/po/POTFILES.in.2 ; \
    if diff $(srcdir)/po/POTFILES.in $(srcdir)/po/POTFILES.in.2 >/dev/null 2>&1 ; then \
        rm -f $(srcdir)/po/POTFILES.in.2 ; \
    else \
        mv $(srcdir)/po/POTFILES.in.2 $(srcdir)/po/POTFILES.in ; \
    fi
	cd po && $(MAKE) $(AM_MAKEFLAGS) update-po

update-gmo: check-gettext
	cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo

force-update-gmo: check-gettext
	touch po/*.po
	cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo

#force-update-gmo-%: check-gettext
#	@language=`echo $@ | sed s/force-update-gmo-//` ; \
#    if test ! -f po/$$language.po ; then echo "file po/$$language.po does not exist" ; exit 1 ; fi ; \
#    touch po/$$language.po ; \
#    cd po && $(MAKE) $(AM_MAKEFLAGS) update-gmo

.PHONY: check-gettext update-po update-gmo force-update-gmo