diff options
author | Stefano Karapetsas <[email protected]> | 2013-11-11 05:40:09 -0800 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-11-11 05:40:09 -0800 |
commit | 82a079a0328947c7db142c2eed4c25aedfe7e7e0 (patch) | |
tree | 9e362a70fa9b6273857b23bf3a3bf51530a4bb15 /Makefile.am | |
parent | b6cc037ac6f5b990f8bbe3745044b45e6228a324 (diff) | |
parent | 03f2dc040eedf3e1c80f69ae4dc4458b2db60ea8 (diff) | |
download | mate-sensors-applet-82a079a0328947c7db142c2eed4c25aedfe7e7e0.tar.bz2 mate-sensors-applet-82a079a0328947c7db142c2eed4c25aedfe7e7e0.tar.xz |
Merge pull request #14 from infirit/master
Add dist-hook for ChangeLog and various fixes/cleanups
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c94545d..befb0c5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,7 @@ SUBDIRS = sensors-applet lib plugins pixmaps po help +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + appletdir = $(datadir)/mate-panel/applets applet_in_files = org.mate.applets.sensors-applet.mate-panel-applet.in applet_DATA = $(applet_in_files:.mate-panel-applet.in=.mate-panel-applet) @@ -27,6 +29,8 @@ org.mate.panel.applet.SensorsAppletFactory.service: $(service_in_files) gsettings_SCHEMAS = \ org.mate.sensors-applet.gschema.xml \ org.mate.sensors-applet.sensor.gschema.xml + +gsettings_SCHEMAS_in_in = $(gsettings_SCHEMAS:.xml=.xml.in.in) @GSETTINGS_RULES@ %.gschema.xml.in: %.gschema.xml.in.in Makefile @@ -51,3 +55,17 @@ DISTCLEANFILES = intltool-extract \ intltool-update DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper + +dist-hook: + @if test -d "$(srcdir)/.git"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generated by Makefile. Do not edit.'; echo; \ + $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(distdir)/ChangeLog \ + || ( rm -f ChangeLog.tmp ; \ + echo Failed to generate ChangeLog >&2 ); \ + else \ + echo A git clone is required to generate a ChangeLog >&2; \ + fi |