~ubuntu-branches/ubuntu/vivid/mate-applets/vivid-proposed

« back to all changes in this revision

Viewing changes to cpufreq/src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Mike Gabriel
  • Date: 2014-04-21 13:57:07 UTC
  • Revision ID: package-import@ubuntu.com-20140421135707-hh4arlnzglq9xxfo
Tags: upstream-1.8.0+dfsg1
ImportĀ upstreamĀ versionĀ 1.8.0+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if BUILD_CPUFREQ_SELECTOR
 
2
selector_SUBDIR = cpufreq-selector
 
3
endif
 
4
 
 
5
SUBDIRS = $(selector_SUBDIR)
 
6
 
 
7
AM_CPPFLAGS = \
 
8
        -DCPUFREQ_MENU_UI_DIR=\""$(datadir)/mate-2.0/ui"\"      \
 
9
        $(MATE_APPLETS4_CFLAGS)                                 \
 
10
        $(LIBGLADE_CFLAGS)                                      \
 
11
        $(DBUS_CFLAGS)
 
12
 
 
13
libexec_PROGRAMS = mate-cpufreq-applet
 
14
 
 
15
if HAVE_LIBCPUFREQ
 
16
cpufreq_files=cpufreq-monitor-libcpufreq.c    cpufreq-monitor-libcpufreq.h
 
17
endif
 
18
 
 
19
mate_cpufreq_applet_SOURCES =  \
 
20
        cpufreq-applet.c                cpufreq-applet.h                \
 
21
        cpufreq-utils.c                 cpufreq-utils.h                 \
 
22
        cpufreq-prefs.c                 cpufreq-prefs.h                 \
 
23
        cpufreq-selector.c              cpufreq-selector.h              \
 
24
        cpufreq-popup.c                 cpufreq-popup.h                 \
 
25
        cpufreq-monitor.c               cpufreq-monitor.h               \
 
26
        cpufreq-monitor-factory.c       cpufreq-monitor-factory.h       \
 
27
        cpufreq-monitor-procfs.c        cpufreq-monitor-procfs.h        \
 
28
        cpufreq-monitor-sysfs.c         cpufreq-monitor-sysfs.h         \
 
29
        $(cpufreq_files)                                                \
 
30
        cpufreq-monitor-cpuinfo.c       cpufreq-monitor-cpuinfo.h
 
31
 
 
32
mate_cpufreq_applet_LDADD =  \
 
33
        $(MATE_APPLETS4_LIBS)           \
 
34
        $(LIBGLADE_LIBS)                \
 
35
        $(LIBCPUFREQ_LIBS)              \
 
36
        $(DBUS_LIBS)
 
37
 
 
38
        
 
39
 
 
40
-include $(top_srcdir)/git.mk