aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2012-07-11 21:46:25 +0200
committerSebastien Bacher <seb128@ubuntu.com>2012-07-11 21:46:25 +0200
commit2e4ec4a2a7b6f23dbe979c67ffe5abf471609f93 (patch)
treea7e41f73c1b539824cc443641343db00fca347b8 /src/Makefile.am
parentbd7a606363967333bc33e4c0ab7a1c50824e96ef (diff)
parent4af0bd2bf3acca2dc08656ba0e7105a28e2d0d1b (diff)
downloadayatana-indicator-power-2e4ec4a2a7b6f23dbe979c67ffe5abf471609f93.tar.gz
ayatana-indicator-power-2e4ec4a2a7b6f23dbe979c67ffe5abf471609f93.tar.bz2
ayatana-indicator-power-2e4ec4a2a7b6f23dbe979c67ffe5abf471609f93.zip
* New upstream release.
* debian/control: updated glib requirement
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..b2cf3df
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,36 @@
+CLEANFILES =
+ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
+
+###################
+# Indicator Stuff
+###################
+
+powerlibdir = $(INDICATORDIR)
+powerlib_LTLIBRARIES = libpower.la
+
+libpower_la_SOURCES = \
+ dbus-listener.c \
+ dbus-listener.h \
+ device.c \
+ device.h \
+ indicator-power.h \
+ indicator-power.c
+
+CLEANFILES += .libs/*.gcda .libs/*.gcno *.gcda *.gcno
+
+libpower_la_CFLAGS = \
+ $(UPOWER_CFLAGS) \
+ $(INDICATOR_CFLAGS) \
+ $(COVERAGE_CFLAGS) \
+ -Wall -Werror \
+ -DG_LOG_DOMAIN=\"Indicator-Power\"
+
+libpower_la_LIBADD = \
+ $(UPOWER_LIBS) \
+ $(INDICATOR_LIBS)
+
+libpower_la_LDFLAGS = \
+ $(COVERAGE_LDFLAGS) \
+ -module \
+ -avoid-version
+