-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
38 lines (28 loc) · 1.13 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
ACLOCAL_AMFLAGS = -I m4
GLIB_PC=dbus-glib-1.pc
SUBDIRS = dbus-gmain dbus tools test doc
DIST_SUBDIRS = dbus-gmain dbus tools test doc m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(GLIB_PC)
DISTCLEANFILES = \
$(GLIB_PC)
EXTRA_DIST = \
CONTRIBUTING.md \
NEWS \
dbus-bus-introspect.xml \
dbus-glib-1.pc.in
# Creating ChangeLog from git log:
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --enable-checks --enable-tests --enable-asserts
%.tar.gz.asc: %.tar.gz
$(AM_V_GEN)gpg --detach-sign --armor $@
maintainer-upload-release:
test -f @PACKAGE@-@[email protected]
test -f @PACKAGE@-@[email protected]
gpg --verify @PACKAGE@-@[email protected]
rsync -vzP @PACKAGE@-@[email protected] dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@[email protected]
rsync -vzP @PACKAGE@-@[email protected] dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/releases/@PACKAGE@/@PACKAGE@-@[email protected]
rsync -rvzPp --chmod=Dg+s,ug+rwX,o=rX doc/reference/html/ \
dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/doc/@PACKAGE@/
check-valgrind: all
$(MAKE) -C test check-valgrind
include tools/lcov.am