diff options
author | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
commit | 312ba610a1e98fc656fb58178227d7d45a64494e (patch) | |
tree | 54a3c2b6084c80e63fb0526c6e7b8e01627acbd7 /cpufreq/src/Makefile.am | |
download | mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.bz2 mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.xz |
initial
Diffstat (limited to 'cpufreq/src/Makefile.am')
-rw-r--r-- | cpufreq/src/Makefile.am | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/cpufreq/src/Makefile.am b/cpufreq/src/Makefile.am new file mode 100644 index 00000000..db5679d0 --- /dev/null +++ b/cpufreq/src/Makefile.am @@ -0,0 +1,40 @@ +if BUILD_CPUFREQ_SELECTOR +selector_SUBDIR = cpufreq-selector +endif + +SUBDIRS = $(selector_SUBDIR) + +INCLUDES = \ + -DCPUFREQ_MENU_UI_DIR=\""$(datadir)/mate-2.0/ui"\" \ + $(MATE_APPLETS3_CFLAGS) \ + $(LIBGLADE_CFLAGS) \ + $(DBUS_CFLAGS) + +libexec_PROGRAMS = cpufreq-applet + +if HAVE_LIBCPUFREQ +cpufreq_files=cpufreq-monitor-libcpufreq.c cpufreq-monitor-libcpufreq.h +endif + +cpufreq_applet_SOURCES = \ + cpufreq-applet.c cpufreq-applet.h \ + cpufreq-utils.c cpufreq-utils.h \ + cpufreq-prefs.c cpufreq-prefs.h \ + cpufreq-selector.c cpufreq-selector.h \ + cpufreq-popup.c cpufreq-popup.h \ + cpufreq-monitor.c cpufreq-monitor.h \ + cpufreq-monitor-factory.c cpufreq-monitor-factory.h \ + cpufreq-monitor-procfs.c cpufreq-monitor-procfs.h \ + cpufreq-monitor-sysfs.c cpufreq-monitor-sysfs.h \ + $(cpufreq_files) \ + cpufreq-monitor-cpuinfo.c cpufreq-monitor-cpuinfo.h + +cpufreq_applet_LDADD = \ + $(MATE_APPLETS3_LIBS) \ + $(LIBGLADE_LIBS) \ + $(LIBCPUFREQ_LIBS) \ + $(DBUS_LIBS) + + + +-include $(top_srcdir)/git.mk |