File: Makefile.am

package info (click to toggle)
terminatorx 3.90-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,448 kB
  • ctags: 2,057
  • sloc: cpp: 13,126; ansic: 4,350; xml: 1,520; sh: 1,036; makefile: 117; awk: 3
file content (33 lines) | stat: -rw-r--r-- 842 bytes parent folder | download
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