source: git/lib/Makefile.am @ 438e5cb

debug-cidebug-ci-sanitiserswalls-data
Last change on this file since 438e5cb was 9990aab, checked in by Olly Betts <olly@…>, 2 years ago

Update Innosetup config for Innosetup 6.2.0

Most notably, the installer should now support installing as a
non-admin user.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1## Process this file with automake to produce Makefile.in
2
3# Makefile for survex support files
4
5check-local: survex.pot
6        srcdir=$(srcdir) LANG=C perl $(srcdir)/checkshortcut.pl $(msg_files)
7        if grep '^#: n:' $(srcdir)/survex.pot|sort|uniq -c|grep -v '^ *1 '; then\
8            echo 'Duplicate message code(s) in survex.pot'; exit 1;\
9        fi
10        for po in $(po_files) ; do\
11            msgfmt -c --check-accelerators -o /dev/null "$(srcdir)/$$po" || exit 1;\
12        done
13        if cd "$(srcdir)" && grep 'msgstr "[0-9][0-9]*"' $(po_files); then\
14            echo '.po file with numeric code'; exit 1;\
15        fi
16
17SUBDIRS = icons images
18
19po_files = bg.po ca.po de.po de_CH.po el.po en_US.po es.po fr.po\
20 hu.po id.po it.po pl.po pt.po pt_BR.po ro.po ru.po sk.po zh_CN.po
21
22msg_files = $(po_files:.po=.msg) en.msg
23
24EXTRA_DIST = survex.pot $(po_files)\
25 po-to-msg.pl checkshortcut.pl extract-msgs.pl\
26 ChineseSimplified.isl\
27 ChineseTraditional.isl\
28 EnglishBritish.isl\
29 Greek.isl\
30 Hungarian.isl\
31 Indonesian.isl\
32 Romanian.isl\
33 make-pixel-font preload_font.h
34
35MAINTAINERCLEANFILES = $(msg_files) unifont.pixelfont preload_font.h
36
37dist_pkgdata_DATA = bcra3.svx bcra5.svx $(msg_files) unifont.pixelfont
38
39appsdir = $(datadir)/applications
40dist_apps_DATA = survex-aven.desktop
41
42gtksourceview3dir = $(datadir)/gtksourceview-3.0/language-specs
43dist_gtksourceview3_DATA = survex.lang
44
45gtksourceview4dir = $(datadir)/gtksourceview-4/language-specs
46dist_gtksourceview4_DATA = survex.lang
47
48$(msg_files): survex.pot $(po_files) po-to-msg.pl
49        LANG=C perl $(srcdir)/po-to-msg.pl $(po_files)
50
51packagesdir = $(datadir)/mime/packages
52dist_packages_DATA = survex.xml
53
54unifont.pixelfont preload_font.h: $(srcdir)/make-pixel-font
55        $(srcdir)/make-pixel-font
56
57merge-pos:
58        cd '$(srcdir)' && ./merge-po $(po_files)
59
60generate-todo:
61        cd '$(srcdir)' && ./generate-po-todo $(po_files)
62
63launchpad-diff:
64        rm -rf lib
65        mkdir lib
66        cd lib && tar --strip-components=1 -xf ../launchpad-export.tar.gz
67        for po in $(po_files) ; do \
68            lpo="lib/survex-$$po" ;\
69            [ -r "$$lpo" ] || continue ;\
70            perl ./unlaunchpad-po "$$lpo" | ./launchpad-merge-po "$$po" - > "lib/$$po" ;\
71            if ! diff -q "$$po" "lib/$$po" ; then \
72                echo "Edit changes for $$po ? (Y/n/q)" ;\
73                read ;\
74                case $$REPLY in \
75                q*) exit 0 ;;\
76                n*) ;;\
77                *) vimdiff "$$po" "lib/$$po" ;;\
78                esac ;\
79            fi ;\
80        done
81
82.PHONY: merge-pos
Note: See TracBrowser for help on using the repository browser.