File: Makefile.am

package info (click to toggle)
bluefish 2.2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,096 kB
  • ctags: 5,830
  • sloc: xml: 150,791; ansic: 59,107; sh: 11,453; python: 6,337; makefile: 1,034; sed: 16
file content (65 lines) | stat: -rw-r--r-- 1,294 bytes parent folder | download | duplicates (8)
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

AUTOMAKE_OPTIONS = dist-bzip2 1.8

SUBDIRS = data desktop-data images man po src ui win32 macosx

PO_SUBDIRS = \
	po \
	src/plugin_about/po \
	src/plugin_charmap/po \
	src/plugin_entities/po \
	src/plugin_htmlbar/po \
	src/plugin_infbrowser/po \
	src/plugin_snippets/po \
	src/plugin_zencoding/po
	
#	src/plugin_xmltools/po


EXTRA_DIST = \
	intltool-extract.in \
	intltool-merge.in \
	intltool-update.in \
	Makefile.mingw

DISTCLEANFILES = \
	doltcompile \
	intltool-extract \
	intltool-merge \
	intltool-update

MAINTAINERCLEANFILES = \
	ABOUT-NLS \
	aclocal.m4 \
	compile \
	config.guess \
	config.sub \
	config.h.in \
	configure \
	depcomp \
	install-sh \
	intltool-extract.in \
	intltool-merge.in \
	intltool-update.in \
	ltmain.sh \
	missing \
	mkinstalldirs \
	Makefile.in

DISTCHECK_CONFIGURE_FLAGS = --disable-update-databases --disable-xml-catalog-update \
                            --enable-debugging-output --enable-development

#maintainer-clean-local:
#	find $(top_srcdir) -name "*~" -exec rm "{}" ";"

update-gmo:
	@list='$(PO_SUBDIRS)'; \
	for subdir in $$list; do \
		(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) update-gmo) || true; \
	done

update-po:
	@list='$(PO_SUBDIRS)'; \
		for subdir in $$list; do \
		(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) update-po) || true; \
	done