mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-05-22 05:18:13 +02:00
205 lines
4.9 KiB
Makefile
205 lines
4.9 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
DIST_SUBDIRS = dummy freebsd linux openbsd bsd
|
|
SUBDIRS = dummy freebsd linux openbsd
|
|
|
|
if BACKEND_TYPE_FREEBSD
|
|
SUBDIRS += bsd
|
|
endif
|
|
|
|
if BACKEND_TYPE_OPENBSD
|
|
SUBDIRS += bsd
|
|
endif
|
|
|
|
AM_CPPFLAGS = \
|
|
$(PIE_CFLAGS) \
|
|
-I$(top_builddir)/src -I$(top_srcdir)/src \
|
|
-I$(top_builddir)/ -I$(top_srcdir)/ \
|
|
-DUPOWER_CONF_PATH=\""$(top_srcdir)/etc/UPower.conf"\" \
|
|
-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
|
|
-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
|
|
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
|
|
-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
|
|
-DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\" \
|
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
|
-DPACKAGE_LIB_DIR=\""$(libdir)"\" \
|
|
-DHISTORY_DIR=\""$(historydir)"\" \
|
|
-D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
|
|
-DUP_COMPILATION \
|
|
-DG_LOG_DOMAIN=\"UPower\" \
|
|
-I$(top_srcdir)/dbus \
|
|
-I$(top_srcdir)/libupower-glib \
|
|
-I$(top_srcdir) \
|
|
$(GIO_CFLAGS) \
|
|
$(GIO_UNIX_CFLAGS) \
|
|
$(GUDEV_CFLAGS) \
|
|
$(GLIB_CFLAGS)
|
|
|
|
UPOWER_LIBS = \
|
|
$(top_builddir)/dbus/libupower-dbus.la \
|
|
$(top_builddir)/libupower-glib/libupower-glib.la
|
|
|
|
libexec_PROGRAMS = upowerd
|
|
|
|
upowerd_SOURCES = \
|
|
up-constants.h \
|
|
up-daemon.h \
|
|
up-daemon.c \
|
|
up-device.h \
|
|
up-device.c \
|
|
up-device-list.h \
|
|
up-device-list.c \
|
|
up-config.h \
|
|
up-config.c \
|
|
up-kbd-backlight.h \
|
|
up-kbd-backlight.c \
|
|
up-wakeups.h \
|
|
up-wakeups.c \
|
|
up-history.h \
|
|
up-history.c \
|
|
up-backend.h \
|
|
up-native.h \
|
|
up-main.c \
|
|
up-backend-bsd-private.h \
|
|
$(BUILT_SOURCES)
|
|
|
|
upowerd_CPPFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
$(AM_CPPFLAGS)
|
|
|
|
upowerd_LDADD = \
|
|
-lm \
|
|
$(GIO_LIBS) \
|
|
$(GIO_UNIX_LIBS) \
|
|
$(UPOWER_LIBS)
|
|
|
|
if BACKEND_TYPE_DUMMY
|
|
upowerd_LDADD += \
|
|
dummy/libupshared.la
|
|
endif
|
|
|
|
if BACKEND_TYPE_FREEBSD
|
|
upowerd_LDADD += \
|
|
freebsd/libupshared.la \
|
|
bsd/libupsharedcommon.la
|
|
endif
|
|
|
|
if BACKEND_TYPE_OPENBSD
|
|
upowerd_LDADD += \
|
|
openbsd/libupshared.la \
|
|
bsd/libupsharedcommon.la
|
|
endif
|
|
|
|
if BACKEND_TYPE_LINUX
|
|
upowerd_LDADD += \
|
|
linux/libupshared.la \
|
|
$(GUDEV_LIBS) \
|
|
$(IDEVICE_LIBS) \
|
|
$(NULL)
|
|
|
|
upowerd_LDFLAGS = \
|
|
$(PIE_LDFLAGS) \
|
|
$(RELRO_LDFLAGS)
|
|
|
|
if UP_BUILD_TESTS
|
|
check-local: upowerd
|
|
# To launch a single test
|
|
# env GI_TYPELIB_PATH=$(top_builddir)/libupower-glib:$(GI_TYPELIB_PATH) LD_LIBRARY_PATH=$(top_builddir)/libupower-glib/.libs:$(LD_LIBRARY_PATH) top_builddir=$(top_builddir) $(srcdir)/linux/integration-test -v Tests.test_bluetooth_le_mouse
|
|
env GI_TYPELIB_PATH=$(top_builddir)/libupower-glib:$(GI_TYPELIB_PATH) LD_LIBRARY_PATH=$(top_builddir)/libupower-glib/.libs:$(LD_LIBRARY_PATH) top_builddir=$(top_builddir) $(srcdir)/linux/integration-test
|
|
endif
|
|
|
|
endif
|
|
|
|
upowerd_CFLAGS = \
|
|
$(WARNINGFLAGS_C) \
|
|
$(NULL)
|
|
|
|
if UP_BUILD_TESTS
|
|
|
|
check_PROGRAMS = \
|
|
up-self-test
|
|
|
|
up_self_test_SOURCES = \
|
|
up-self-test.c \
|
|
up-config.h \
|
|
up-config.c \
|
|
up-daemon.h \
|
|
up-daemon.c \
|
|
up-device.h \
|
|
up-device.c \
|
|
up-device-list.h \
|
|
up-device-list.c \
|
|
up-kbd-backlight.h \
|
|
up-kbd-backlight.c \
|
|
up-wakeups.h \
|
|
up-wakeups.c \
|
|
up-history.h \
|
|
up-history.c \
|
|
up-backend.h \
|
|
up-native.h \
|
|
$(BUILT_SOURCES)
|
|
|
|
up_self_test_LDADD = \
|
|
-lm \
|
|
dummy/libuptest.la \
|
|
$(GLIB_LIBS) \
|
|
$(GIO_CFLAGS) \
|
|
$(POLKIT_LIBS) \
|
|
$(UPOWER_LIBS)
|
|
|
|
up_self_test_CFLAGS = $(AM_CFLAGS) $(WARNINGFLAGS_C)
|
|
|
|
TESTS_ENVIRONMENT = $(DBUS_LAUNCH)
|
|
TESTS = up-self-test
|
|
|
|
endif
|
|
|
|
dbusservicedir = $(datadir)/dbus-1/system-services
|
|
dbusservice_in_files = org.freedesktop.UPower.service.in
|
|
dbusservice_DATA = $(dbusservice_in_files:.service.in=.service)
|
|
|
|
$(dbusservice_DATA): $(dbusservice_in_files) Makefile
|
|
@sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
|
|
|
|
dbusconfdir = $(datadir)/dbus-1/system.d
|
|
dbusconf_in_files = org.freedesktop.UPower.conf.in
|
|
dbusconf_DATA = $(dbusconf_in_files:.conf.in=.conf)
|
|
|
|
$(dbusconf_DATA): $(dbusconf_in_files) Makefile
|
|
cp $< $@
|
|
|
|
systemdservice_in_files = upower.service.in
|
|
|
|
if HAVE_SYSTEMDSYSTEMUNITDIR
|
|
systemdservicedir = $(systemdsystemunitdir)
|
|
systemdservice_DATA = $(systemdservice_in_files:.service.in=.service)
|
|
|
|
$(systemdservice_DATA): $(systemdservice_in_files) Makefile
|
|
@sed -e "s|\@libexecdir\@|$(libexecdir)|" -e "s|\@historydir\@|$(historydir)|" $< > $@
|
|
endif
|
|
|
|
install-data-hook:
|
|
if test -w $(DESTDIR)$(prefix)/; then \
|
|
mkdir -p $(DESTDIR)$(historydir); \
|
|
fi
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(dbusconf_DATA) \
|
|
$(systemdservice_DATA) \
|
|
$(dbusservice_DATA)
|
|
|
|
EXTRA_DIST = \
|
|
$(systemdservice_in_files) \
|
|
$(dbusservice_in_files) \
|
|
$(dbusconf_in_files)
|
|
|
|
if HAVE_SYSTEMDSYSTEMUNITDIR
|
|
EXTRA_DIST += $(systemdservice_in_files)
|
|
endif
|
|
|
|
clean-local :
|
|
rm -f *~ $(dbusservice_DATA) $(dbusconf_DATA) $(systemdservice_DATA)
|
|
|
|
-include $(top_srcdir)/git.mk
|