File: Makefile.am

package info (click to toggle)
claws-mail 4.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,264 kB
  • sloc: ansic: 269,620; cpp: 19,478; xml: 11,545; sh: 6,285; perl: 2,767; makefile: 2,504; yacc: 2,471; python: 334; lex: 293; sed: 16
file content (98 lines) | stat: -rw-r--r-- 2,527 bytes parent folder | download | duplicates (3)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Copyright 1999-2014 the Claws Mail team.
# This file is part of Claws Mail package, and distributed under the
# terms of the General Public License version 3 (or later).
# See COPYING file for license details.

if BUILD_TESTS
include $(top_srcdir)/tests.mk
endif

ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = dist-bzip2 dist-xz

SUBDIRS = po src tools config doc manual

EXTRA_DIST = \
	ChangeLog \
	ChangeLog.gtk1 \
	ChangeLog.pre2.0.0 \
	ChangeLog.2.0.0-3.0.0 \
	ChangeLog.3.0.0-3.9.0 \
	RELEASE_NOTES \
	claws-mail-128x128.png \
	claws-mail-64x64.png \
	claws-mail.pc.in \
	claws-mail.desktop \
	claws-mail.png \
	autogen.sh \
	claws-features.h.in \
	get-git-version \
	m4 \
	version

# hicolor icon theme, base class of all icon themes
pixmapdir=$(datadir)/icons/hicolor/48x48/apps
pixmap_DATA=claws-mail.png

pixmap64dir=$(datadir)/icons/hicolor/64x64/apps
pixmap64_DATA=claws-mail-64x64.png

pixmap128dir=$(datadir)/icons/hicolor/128x128/apps
pixmap128_DATA=claws-mail-128x128.png

# when changing the name or location of the .desktop file,
# also update src/common/Makefile.am
gnomapdir = $(datadir)/applications
gnomap_DATA=claws-mail.desktop

rename-icons:
	@cd $(DESTDIR)$(datadir)/icons/hicolor/64x64/apps && \
            mv claws-mail-64x64.png claws-mail.png
	@cd $(DESTDIR)$(datadir)/icons/hicolor/128x128/apps && \
            mv claws-mail-128x128.png claws-mail.png

remove-icons:
	rm -f $(DESTDIR)$(datadir)/icons/hicolor/64x64/apps/claws-mail.png
	rm -f $(DESTDIR)$(datadir)/icons/hicolor/128x128/apps/claws-mail.png

if UPDATE_GTK_ICON_CACHE
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor

install-data-hook: rename-icons update-icon-cache
uninstall-hook: remove-icons update-icon-cache

update-icon-cache:
	@-if test -z "$(DESTDIR)"; then					\
                echo "Updating Gtk icon cache.";			\
                $(gtk_update_icon_cache);				\
        else								\
                echo "*** Icon cache not updated. Remember to run:";	\
		echo "***";						\
                echo "***   $(gtk_update_icon_cache)";			\
		echo "***";						\
        fi
else

install-data-hook: rename-icons
uninstall-hook: remove-icons

endif

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = claws-mail.pc

clawsincludedir = $(pkgincludedir)
clawsinclude_HEADERS = \
	claws-features.h

relnotesdir = $(docdir)
relnotes_DATA = RELEASE_NOTES

dist-local: ChangeLog

maintainer-clean-local:
	@rm -f ChangeLog
	@rm -f version

ChangeLog: version
	@./tools/gitlog2changelog.py 3.9.0 > ChangeLog