File: Makefile.am

package info (click to toggle)
terminatorx 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,464 kB
  • sloc: cpp: 13,364; ansic: 2,422; sh: 1,272; makefile: 135; xml: 94; awk: 3
file content (45 lines) | stat: -rw-r--r-- 1,143 bytes parent folder | download | duplicates (2)
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
39
40
41
42
43
44
45
AUTOMAKE_OPTIONS = foreign
SUBDIRS = src icons help
EXTRA_DIST = COPYING-DOCS\
	README.md\
	INSTALL.md\
	README.PERFORMANCE.md\
	THANKS.md\
	TODO.md\
	AUTHORS.md\
	terminatorX.spec.in\
	terminatorX.appdata.xml\
	terminatorX.desktop\
	autogen.sh\
	terminatorX.mime

# Destkop Entry
desktopdir = $(datadir)/applications
desktop_DATA = terminatorX.desktop

appdatadir = $(datarootdir)/appdata
appdata_DATA = terminatorX.appdata.xml

mimedir = $(datadir)/mime-info
mime_DATA = terminatorX.mime terminatorX.keys

man_MANS = terminatorX.1

tarballs: dist
	gzip -d < $(distdir).tar.gz | bzip2 -9 > $(distdir).tar.bz2

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

indent:
	@find src -maxdepth 1  -name '*[ch]' -type f -print0 | xargs --null --max-args 128 --max-procs 4 clang-format -i