2 # xfce4-hdaps, an XFCE4 panel plugin for the HDAPS system.
4 # Copyright (C) 2019 Michael Orlitzky
6 # http://michael.orlitzky.com/
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as
10 # published by the Free Software Foundation, either version 3 of the
11 # License, or (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU Affero General Public License for more details:
18 # https://www.gnu.org/licenses/agpl-3.0.html
23 -DG_LOG_DOMAIN=\"xfce4-hdaps\" \
24 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
30 plugin_LTLIBRARIES = libhdaps.la
32 plugindir = $(libdir)/xfce4/panel/plugins
34 libhdaps_la_SOURCES = \
39 xfce4-hdaps-dialogs.c \
42 libhdaps_la_CFLAGS = \
43 $(LIBXFCE4UTIL_CFLAGS) \
44 $(LIBXFCE4UI_CFLAGS) \
45 $(LIBXFCE4PANEL_CFLAGS) \
48 libhdaps_la_LDFLAGS = \
52 -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
55 libhdaps_la_LIBADD = \
56 $(LIBXFCE4UTIL_LIBS) \
63 desktopdir = $(datadir)/xfce4/panel/plugins
65 desktop_in_files = hdaps.desktop.in
67 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
69 @INTLTOOL_DESKTOP_RULE@
71 EXTRA_DIST = $(desktop_in_files)
76 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake: