mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-01-09 23:40:15 +01:00
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
INCLUDES = \
|
|
$(GLIB_CFLAGS) \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/libdevkit-power \
|
|
-DDKP_COMPILATION \
|
|
-DEGG_LOG_FILE=\""$(DKP_LOG_DIR)/DeviceKit-power"\" \
|
|
-DEGG_VERBOSE="\"DKP_VERBOSE\"" \
|
|
-DEGG_LOGGING="\"DKP_LOGGING\"" \
|
|
-DEGG_CONSOLE="\"DKP_CONSOLE\"" \
|
|
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
|
|
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\"
|
|
|
|
noinst_LTLIBRARIES = \
|
|
libdevkit-power.la
|
|
|
|
libdevkit_power_la_SOURCES = \
|
|
egg-debug.c \
|
|
egg-debug.h \
|
|
egg-string.c \
|
|
egg-string.h \
|
|
devicekit-power.h \
|
|
dkp-client.c \
|
|
dkp-client.h \
|
|
dkp-device.c \
|
|
dkp-device.h \
|
|
dkp-wakeups.c \
|
|
dkp-wakeups.h \
|
|
dkp-qos-obj.h \
|
|
dkp-qos-obj.c \
|
|
dkp-history-obj.h \
|
|
dkp-history-obj.c \
|
|
dkp-stats-obj.h \
|
|
dkp-stats-obj.c \
|
|
dkp-wakeups-obj.h \
|
|
dkp-wakeups-obj.c \
|
|
dkp-enum.c \
|
|
dkp-enum.h
|
|
|
|
libdevkit_power_la_LIBADD = $(INTLLIBS) $(GLIB_LIBS) $(DBUS_GLIB_LIBS)
|
|
|
|
|
|
clean-local:
|
|
rm -f *~
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|