-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
executable file
·49 lines (35 loc) · 947 Bytes
/
Makefile.am
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
AUTOMAKE_OPTIONS = dist-bzip2
SUBDIRS = bin pitivi common po tests data
ACLOCAL_AMFLAGS = -I m4
if BUILD_HELP
SUBDIRS += help
endif
mimedir = $(datadir)/mime/packages
mime_DATA = pitivi.xml
man_MANS = docs/pitivi.1
EXTRA_DIST = \
NEWS \
AUTHORS \
RELEASE \
pitivi.xml
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
EXTRA_DIST += \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
$(man_MANS)
# This rule allows running pitivi uninstalled
locale-uninstalled:
if test -d po && test -z "$(DESTDIR)"; then \
$(MAKE) -C po datadir=../$(top_builddir) install; \
fi
locale-uninstalled-clean:
@-rm -rf _trial_temp
@-rm -rf $(top_builddir)/locale
all-local: locale-uninstalled
clean-local: locale-uninstalled-clean
check-integration:
cd tests; make check-integration