mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-05-24 15:38:14 +02:00
This can easily be done by doing #define UPOWER_ENABLE_DEPRECATED before "#include <upower.h>" or adding -DUPOWER_ENABLE_DEPRECATED to the cflags line in Makefile.am See http://lists.freedesktop.org/archives/devkit-devel/2013-January/001339.html for more information on future plans and for rationale.
88 lines
2.2 KiB
Makefile
88 lines
2.2 KiB
Makefile
AM_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/libupower-glib \
|
|
-DUP_COMPILATION \
|
|
-DUPOWER_ENABLE_DEPRECATED \
|
|
-DG_LOG_DOMAIN=\"libupower-glib\" \
|
|
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
|
|
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\"
|
|
|
|
-include $(INTROSPECTION_MAKEFILE)
|
|
INTROSPECTION_GIRS =
|
|
INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir)
|
|
INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
|
|
|
|
lib_LTLIBRARIES = \
|
|
libupower-glib.la
|
|
|
|
libupower_glib_includedir = $(includedir)/libupower-glib
|
|
libupower_glib_include_HEADERS = \
|
|
upower.h \
|
|
up-version.h \
|
|
up-types.h \
|
|
up-device.h \
|
|
up-qos-item.h \
|
|
up-wakeup-item.h \
|
|
up-stats-item.h \
|
|
up-history-item.h \
|
|
up-wakeups.h \
|
|
up-client.h
|
|
|
|
libupower_glib_la_SOURCES = \
|
|
up-types.c \
|
|
up-client.c \
|
|
up-wakeups.c \
|
|
up-qos-item.c \
|
|
up-wakeup-item.c \
|
|
up-stats-item.c \
|
|
up-history-item.c \
|
|
up-device.c
|
|
|
|
libupower_glib_la_LIBADD = \
|
|
$(INTLLIBS) \
|
|
$(GLIB_LIBS) \
|
|
$(DBUS_GLIB_LIBS)
|
|
|
|
libupower_glib_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-export-dynamic \
|
|
-no-undefined \
|
|
-export-symbols-regex '^up_.*'
|
|
|
|
libupower_glib_la_CFLAGS = \
|
|
$(WARNINGFLAGS_C) \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
up-version.h.in
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
if HAVE_INTROSPECTION
|
|
introspection_sources = $(libupower_glib_include_HEADERS) $(libupower_glib_la_SOURCES)
|
|
|
|
UPowerGlib-1.0.gir: libupower-glib.la
|
|
UPowerGlib_1_0_gir_INCLUDES = GObject-2.0 Gio-2.0
|
|
UPowerGlib_1_0_gir_CFLAGS = $(AM_CPPFLAGS)
|
|
UPowerGlib_1_0_gir_SCANNERFLAGS = --identifier-prefix=Up --symbol-prefix=up_ --warn-all --add-include-path=$(srcdir)
|
|
UPowerGlib_1_0_gir_LIBS = libupower-glib.la
|
|
UPowerGlib_1_0_gir_FILES = $(introspection_sources)
|
|
UPowerGlib_1_0_gir_NAMESPACE = UPowerGlib
|
|
INTROSPECTION_GIRS += UPowerGlib-1.0.gir
|
|
|
|
girdir = $(datadir)/gir-1.0
|
|
gir_DATA = $(INTROSPECTION_GIRS)
|
|
|
|
typelibdir = $(libdir)/girepository-1.0
|
|
typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
|
|
|
|
CLEANFILES += $(gir_DATA) $(typelib_DATA)
|
|
endif
|
|
|
|
clean-local:
|
|
rm -f *~
|
|
|
|
-include $(top_srcdir)/git.mk
|