~peter-pearse/ubuntu/oneiric/upower/prop001

« back to all changes in this revision

Viewing changes to src/openbsd/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-05 14:31:17 UTC
  • mfrom: (15.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110505143117-9clyzsrw45vt5g6y
Tags: 0.9.10-1
* New upstream release:
  - Fix "unknown" battery status guessing to not be recursive. (LP: #384304)
* debian/control: Drop obsolete devicekit-power-* Conflicts/Replaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
INCLUDES = \
 
4
        -I$(top_builddir)/src -I$(top_srcdir)/src               \
 
5
        -DUP_COMPILATION                                        \
 
6
        -DG_LOG_DOMAIN=\"UPower-Openbsd\"                       \
 
7
        -I$(top_srcdir)/libupower-glib                          \
 
8
        $(DBUS_GLIB_CFLAGS)                                     \
 
9
        $(POLKIT_CFLAGS)                                        \
 
10
        $(GLIB_CFLAGS)
 
11
 
 
12
if BACKEND_TYPE_OPENBSD
 
13
noinst_LTLIBRARIES = libupshared.la
 
14
endif
 
15
 
 
16
libupshared_la_SOURCES =                                        \
 
17
        up-backend.c                                            \
 
18
        up-native.c                                             \
 
19
        $(BUILT_SOURCES)
 
20
 
 
21
libupshared_la_CFLAGS =                                 \
 
22
        $(WARNINGFLAGS_C)
 
23
 
 
24
clean-local :
 
25
        rm -f *~
 
26