File: Makefile.am

package info (click to toggle)
xfce4-cpufreq-plugin 1.2.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,864 kB
  • sloc: sh: 4,360; cpp: 3,110; makefile: 141; ansic: 9
file content (56 lines) | stat: -rw-r--r-- 1,359 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
46
47
48
49
50
51
52
53
54
55
56
plugindir = $(libdir)/xfce4/panel/plugins
plugin_LTLIBRARIES = libcpufreq.la

AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"

libcpufreq_la_CFLAGS = \
	@LIBXFCE4PANEL_CFLAGS@ \
	@LIBXFCE4UI_CFLAGS@ \
	@LIBXFCE4UTIL_CFLAGS@

libcpufreq_la_CXXFLAGS = $(libcpufreq_la_CFLAGS)

libcpufreq_la_LIBADD = \
	$(top_builddir)/xfce4++/util/libxfce4util_pp.la \
	@LIBXFCE4PANEL_LIBS@ \
	@LIBXFCE4UI_LIBS@ \
	@LIBXFCE4UTIL_LIBS@ \
	-lm

libcpufreq_la_SOURCES = \
	plugin.c \
	plugin.h \
	xfce4-cpufreq-configure.cc \
	xfce4-cpufreq-configure.h \
	xfce4-cpufreq-linux-procfs.cc \
	xfce4-cpufreq-linux-procfs.h \
	xfce4-cpufreq-linux-pstate.cc \
	xfce4-cpufreq-linux-pstate.h \
	xfce4-cpufreq-linux-sysfs.cc \
	xfce4-cpufreq-linux-sysfs.h \
	xfce4-cpufreq-linux.cc \
	xfce4-cpufreq-linux.h \
	xfce4-cpufreq-overview.cc \
	xfce4-cpufreq-overview.h \
	xfce4-cpufreq-plugin.cc \
	xfce4-cpufreq-plugin.h \
	xfce4-cpufreq-utils.cc \
	xfce4-cpufreq-utils.h

libcpufreq_la_LDFLAGS = \
	-avoid-version \
	-module \
	-no-undefined \
	-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
	$(PLATFORM_LDFLAGS)

desktopdir = $(datadir)/xfce4/panel/plugins
desktop_in_files = cpufreq.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@

EXTRA_DIST = $(desktop_in_files)

DISTCLEANFILES = $(desktop_DATA)