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
|
AUTOMAKE_OPTIONS = foreign
SUBDIRS = src icons help
EXTRA_DIST = COPYING-DOCS\
README.PERFORMANCE\
terminatorX.spec.in\
gnome-doc-utils.make\
terminatorX.desktop\
autogen.sh\
terminatorX.mime
DISTCLEANFILES = gnome-doc-utils.make
# Destkop Entry
desktopdir = $(datadir)/applications
desktop_DATA = terminatorX.desktop
mimedir = $(datadir)/mime-info
mime_DATA = terminatorX.mime terminatorX.keys
man_MANS = terminatorX.1
dist-hook:
@if test -d "$(top_srcdir)/.git"; then \
echo ' GEN ChangeLog'; \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.' && echo && \
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
|