424
by Sean Davis
Populate authors based on bzr log |
1 |
#
|
2 |
# Copyright (C) 2010 - 2011, Robert Ancell <robert.ancell@canonical.com>
|
|
3 |
# Copyright (C) 2012, Lionel Le Folgoc <mrpouit@ubuntu.com>
|
|
4 |
# Copyright (C) 2018, Sean Davis <smd.seandavis@gmail.com>
|
|
5 |
#
|
|
6 |
# This program is free software: you can redistribute it and/or modify it under
|
|
7 |
# the terms of the GNU General Public License as published by the Free Software
|
|
8 |
# Foundation, either version 3 of the License, or (at your option) any later
|
|
9 |
# version. See http://www.gnu.org/copyleft/gpl.html the full text of the
|
|
10 |
# license.
|
|
11 |
#
|
|
12 |
||
393
by Sean Davis
Finish gnome-common build deprecation based on https://github.com/phako/gtkterm/commit/f3d567c9e03354940fa23a183ba900649cee5121 |
13 |
ACLOCAL_AMFLAGS = -I m4 |
14 |
||
1
by Robert Ancell
Split lightdm-gtk-greeter out of lightdm |
15 |
SUBDIRS = data po src |
16 |
||
17 |
EXTRA_DIST = \ |
|
18 |
autogen.sh \
|
|
19 |
lightdm-gtk-greeter.doap |
|
20 |
||
21 |
DISTCLEANFILES = \ |
|
22 |
gtk-doc.make \
|
|
23 |
omf.make \
|
|
47
by Lionel Le Folgoc
Fix FTBFS when built twice in a row |
24 |
xmldocs.make |
62
by Lionel Le Folgoc
Generate a proper changelog during dist |
25 |
|
26 |
.PHONY: ChangeLog |
|
27 |
||
28 |
ChangeLog: |
|
29 |
(cd $(top_srcdir) && bzr log --gnu-changelog > .changelog.tmp \ |
|
30 |
&& mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \ |
|
31 |
|| (touch ChangeLog; echo 'Bzr directory not found: installing possibly empty changelog.' >&2) |
|
32 |
||
33 |
dist-hook: ChangeLog |
|
393
by Sean Davis
Finish gnome-common build deprecation based on https://github.com/phako/gtkterm/commit/f3d567c9e03354940fa23a183ba900649cee5121 |
34 |
|
35 |
-include $(top_srcdir)/git.mk
|