2009-07-27 16:40:11 +01:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
|
-I$(top_builddir)/src -I$(top_srcdir)/src \
|
2010-01-18 14:04:24 +00:00
|
|
|
-DUP_COMPILATION \
|
2009-07-27 17:15:27 +01:00
|
|
|
-DG_UDEV_API_IS_SUBJECT_TO_CHANGE \
|
2010-02-06 04:29:57 +01:00
|
|
|
-I$(top_srcdir)/libupower-glib \
|
2010-05-18 09:37:17 +01:00
|
|
|
$(USB_CFLAGS) \
|
2009-07-27 16:40:11 +01:00
|
|
|
$(GIO_CFLAGS) \
|
|
|
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
|
|
|
$(GUDEV_CFLAGS) \
|
|
|
|
|
$(POLKIT_CFLAGS) \
|
2010-05-28 01:56:35 +01:00
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
|
$(IDEVICE_CFLAGS)
|
2009-07-27 16:40:11 +01:00
|
|
|
|
2009-09-11 09:52:32 +01:00
|
|
|
if BACKEND_TYPE_LINUX
|
2010-01-18 13:10:00 +00:00
|
|
|
noinst_LTLIBRARIES = libupshared.la
|
2009-09-11 09:52:32 +01:00
|
|
|
endif
|
|
|
|
|
|
2010-05-28 01:56:35 +01:00
|
|
|
if HAVE_IDEVICE
|
|
|
|
|
idevice_files = up-device-idevice.c up-device-idevice.h
|
|
|
|
|
else
|
|
|
|
|
idevice_files =
|
|
|
|
|
endif
|
|
|
|
|
|
2010-01-18 13:10:00 +00:00
|
|
|
libupshared_la_SOURCES = \
|
2010-01-18 12:26:55 +00:00
|
|
|
up-device-supply.c \
|
|
|
|
|
up-device-supply.h \
|
|
|
|
|
up-device-csr.c \
|
|
|
|
|
up-device-csr.h \
|
|
|
|
|
up-device-hid.c \
|
|
|
|
|
up-device-hid.h \
|
|
|
|
|
up-device-wup.c \
|
|
|
|
|
up-device-wup.h \
|
|
|
|
|
up-input.c \
|
|
|
|
|
up-input.h \
|
|
|
|
|
up-backend.c \
|
|
|
|
|
up-native.c \
|
2009-07-27 16:40:11 +01:00
|
|
|
sysfs-utils.c \
|
|
|
|
|
sysfs-utils.h \
|
2010-05-28 01:56:35 +01:00
|
|
|
$(idevice_files) \
|
2009-07-27 16:40:11 +01:00
|
|
|
$(BUILT_SOURCES)
|
|
|
|
|
|
2010-09-17 16:10:39 +01:00
|
|
|
EXTRA_DIST = $(libupshared_la_SOURCES)
|
2010-05-28 01:56:35 +01:00
|
|
|
|
2010-01-18 13:10:00 +00:00
|
|
|
libupshared_la_CFLAGS = \
|
2009-09-11 12:05:16 +01:00
|
|
|
$(WARNINGFLAGS_C)
|
|
|
|
|
|
2009-07-27 16:40:11 +01:00
|
|
|
clean-local :
|
|
|
|
|
rm -f *~
|
|
|
|
|
|