-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
38 lines (28 loc) · 1.2 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
## Process this file with automake to produce Makefile.in
SUBDIRS = actions data src docs po
if BUILD_TEST
SUBDIRS += test
endif
NULL =
EXTRA_DIST = \
HACKING \
$(NULL)
# xsltproc barfs on 'make distcheck'; disable for now
DISTCHECK_CONFIGURE_FLAGS= \
--disable-man-pages \
--disable-gtk-doc \
--disable-introspection \
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) \
$(NULL)
sign : dist
gpg --armor --detach-sign --output polkit-$(VERSION).tar.gz.sign polkit-$(VERSION).tar.gz
publish : sign
scp polkit-$(VERSION).tar.gz polkit-$(VERSION).tar.gz.sign "[email protected]:/srv/www.freedesktop.org/www/software/polkit/releases/"
publish-docs :
gtkdoc-rebase --html-dir docs/polkit/html --online
ssh "[email protected]" "mkdir -p /srv/www.freedesktop.org/www/software/polkit/docs/$(VERSION)"
scp docs/polkit/html/* "[email protected]:/srv/www.freedesktop.org/www/software/polkit/docs/$(VERSION)"
ssh "[email protected]" "rm -f /srv/www.freedesktop.org/www/software/polkit/docs/latest; ln -s $(VERSION) /srv/www.freedesktop.org/www/software/polkit/docs/latest"
clean-local :
rm -f *~
-include $(top_srcdir)/git.mk