1# Copyright 1999-2014 the Claws Mail team.
2# This file is part of Claws Mail package, and distributed under the
3# terms of the General Public License version 3 (or later).
4# See COPYING file for license details.
5
6if BUILD_HOTKEYS
7noinst_LTLIBRARIES = libcmnpgtkhotkey.la
8endif
9
10AUTOMAKE_OPTIONS = subdir-objects
11
12libcmnpgtkhotkey_la_SOURCES = \
13	gtk-hotkey-info.c gtk-hotkey-info.h \
14	gtk-hotkey-error.c gtk-hotkey-error.h \
15	gtk-hotkey-listener.c gtk-hotkey-listener.h \
16	gtk-hotkey-marshal.c gtk-hotkey-marshal.h \
17	gtk-hotkey-x11-listener.c gtk-hotkey-x11-listener.h \
18	x11/tomboykeybinder.c x11/tomboykeybinder.h \
19	x11/eggaccelerators.c x11/eggaccelerators.h \
20	gtk-hotkey-registry.c gtk-hotkey-registry.h \
21	gtk-hotkey-key-file-registry.c gtk-hotkey-key-file-registry.h \
22	gtk-hotkey-utils.c gtk-hotkey-utils.h \
23	gtkhotkey.h
24
25libcmnpgtkhotkey_la_LIBADD = \
26	$(GTK_LIBS) \
27	$(CM_NP_HOTKEY_LIBS)
28
29libcmnpgtkhotkey_la_CPPFLAGS = \
30	-DGTK_HOTKEY_COMPILATION \
31	$(GLIB_CFLAGS) \
32	$(GTK_CFLAGS) \
33	$(CM_NP_HOTKEY_CFLAGS)
34
35.PHONY: test
36