forked from Flumotion/flumotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
97 lines (78 loc) · 2.57 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# version first -- they are parsed LTR and later options depend on automake 1.8.
AUTOMAKE_OPTIONS = 1.8 dist-bzip2
ACLOCAL_AMFLAGS = -I m4 -I common
include $(srcdir)/common/changelog.mk
include $(srcdir)/common/common.mk
include $(srcdir)/common/pychecker.mk
include $(srcdir)/common/rpm.mk
include $(srcdir)/common/deb.mk
SUBDIRS = . bin conf data flumotion doc common pkgconfig tests po
EXTRA_DIST = \
env.in \
.version \
RELEASE \
LICENSE.LGPL \
flumotion.spec \
flumotion.doap \
misc/pycheckerhelp.py \
intltool-extract.in \
intltool-merge.in \
intltool-update.in
all-local: locale-uninstalled
clean-local: locale-uninstalled-clean
# for some reason, the run is *completely* different if the last set of
# components is moved up. So keep it low
# same for any gtk stuff - keep it low
PYCHECKER_WHITELIST = \
flumotion/extern/log/*.py \
flumotion/admin/text/*.py \
flumotion/component/*.py \
flumotion/admin/*.py \
flumotion/admin/command/*.py \
flumotion/common/*.py \
flumotion/configure/*.py \
flumotion/job/*.py \
flumotion/launch/*.py \
flumotion/manager/*.py \
flumotion/monitor/*.py \
flumotion/monitor/*/*.py \
flumotion/service/*.py \
flumotion/worker/*.py \
flumotion/worker/checks/*.py \
flumotion/twisted/*.py \
flumotion/ui/*.py \
flumotion/component/*/*.py \
flumotion/component/*/*/*.py \
flumotion/porter/*.py \
flumotion/wizard/*.py \
flumotion/admin/gtk.py
PYCHECKER_BLACKLIST = \
flumotion/common/gstreamer.py \
flumotion/ui/kiwipatches.py \
flumotion/ui/linkwidget.py
COVERAGE_MODULES = flumotion
integration:
trial tests.integration
check-local: check-local-pep8 check-local-registry
# flumotion-trial.in was previously in misc/ so old versions might
# have a stale generated version
CLEANFILES = \
misc/flumotion-trial
# generated by make check during make distcheck and translation stuff
DISTCLEANFILES = \
cache/registry/registry.xml \
po/stamp-it \
intltool-extract \
intltool-merge \
intltool-update
BUILT_SOURCES = $(top_srcdir)/.version
$(top_srcdir)/.version:
echo $(VERSION) > $@-t && mv $@-t $@
dist: changelog
dist-hook::
@echo $(VERSION) > $(distdir)/.tarball-version
update-externals: update-external-command
update-external-command:
find flumotion/extern/command -type f ! -regex '.*/.svn/.*' -delete
svn export --force https://thomas.apestaart.org/moap/svn/trunk/moap/extern/command flumotion/extern/command
.PHONY: update-externals update-external-command ChangeLog test