~ubuntu-branches/ubuntu/utopic/thermald/utopic

« back to all changes in this revision

Viewing changes to .pc/0005-man-pages-move-man-pages-into-the-correct-sections.patch/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Colin King
  • Date: 2014-05-19 12:41:22 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140519124122-zan11arvjxtbqcq5
Tags: 1.2-1
* Adjust for coretemp path change
* Deny non root users to send system bus dbus messages
* Remove compile warning
* Remove rpmlint warning for manual page
* Remove old patches that are now included into version 1.2
* Sync up with version 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include $(GLIB_MAKEFILE)
2
 
 
3
 
SUBDIRS = data
4
 
 
5
 
ACLOCAL_AMFLAGS =
6
 
 
7
 
# Global C Flags
8
 
AM_CFLAGS = ${DBUS_CFLAGS}
9
 
AM_CXXFLAGS = ${DBUS_CFLAGS}\
10
 
                $(XML_CFLAGS) \
11
 
                -DTDRUNDIR=\"$(tdrundir)\" \
12
 
                -DTDCONFDIR=\"$(tdconfdir)\" \
13
 
                -I src \
14
 
                -fpermissive \
15
 
                -fopenmp \
16
 
                -Wreorder \
17
 
                -Wsign-compare \
18
 
                -Wreturn-type \
19
 
                -Wunused-but-set-variable\
20
 
                -Wformat
21
 
 
22
 
EXTRA_DIST=Makefile.glib \
23
 
        thermald.pc.in
24
 
 
25
 
# Programs to build
26
 
bin_PROGRAMS = thermald
27
 
 
28
 
# Evaluate Table Application
29
 
thermald_CPPFLAGS = \
30
 
        -I@top_srcdir@/src \
31
 
        -DTDLOCALEDIR=\"$(datadir)/locale\" \
32
 
        -DGLIBC_SUPPORT
33
 
 
34
 
thermald_includedir = @top_srcdir@
35
 
thermald_LDADD = \
36
 
        $(DBUS_LIBS) \
37
 
        $(GLIB_LIBS) \
38
 
        $(LIBNL_LIBS) \
39
 
        $(LIBM) \
40
 
        $(LIBDL) \
41
 
                $(XML_LIBS)
42
 
 
43
 
BUILT_SOURCES = \
44
 
        thd-dbus-interface.h
45
 
 
46
 
thermald_SOURCES = \
47
 
                src/main.cpp \
48
 
                src/thd_engine.cpp \
49
 
                src/thd_cdev.cpp \
50
 
                src/thd_cdev_therm_sys_fs.cpp \
51
 
                src/thd_engine_default.cpp \
52
 
                src/thd_sys_fs.cpp \
53
 
                src/thd_trip_point.cpp \
54
 
                src/thd_zone.cpp \
55
 
                src/thd_zone_surface.cpp \
56
 
                src/thd_zone_cpu.cpp \
57
 
                src/thd_zone_therm_sys_fs.cpp \
58
 
                src/thd_preference.cpp \
59
 
                src/thd_model.cpp \
60
 
                src/thd_parse.cpp \
61
 
                src/thd_sensor.cpp \
62
 
                src/thd_kobj_uevent.cpp \
63
 
                src/thd_cdev_order_parser.cpp \
64
 
                src/thd_cdev_gen_sysfs.cpp \
65
 
                src/thd_pid.cpp \
66
 
                src/thd_zone_generic.cpp \
67
 
                src/thd_cdev_cpufreq.cpp \
68
 
                src/thd_cdev_rapl.cpp \
69
 
                src/thd_cdev_intel_pstate_driver.cpp \
70
 
                src/thd_msr.cpp \
71
 
                src/thd_rapl_interface.cpp \
72
 
                src/thd_cdev_msr_rapl.cpp
73
 
 
74
 
 
75
 
man1_MANS = man/thermald.1 man/thermal-conf.xml.1
76
 
 
77
 
thd-dbus-interface.h: $(top_srcdir)/src/thd-dbus_interface.xml
78
 
        $(AM_V_GEN) dbus-binding-tool --prefix=thd_dbus_interface --mode=glib-server --output=$@ $<
79
 
 
80
 
CLEANFILES = $(BUILT_SOURCES)