mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-04-08 14:00:39 +02:00
The EGG_* log defines don't seem to be used and still reference the old DeviceKit-power name. So just remove it.
35 lines
745 B
Makefile
35 lines
745 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = \
|
|
-DUP_COMPILATION \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/devkit-power-gobject \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
$(POLKIT_DBUS_CFLAGS) \
|
|
$(GLIB_CFLAGS)
|
|
|
|
DEVKIT_POWER_LIBS = $(top_builddir)/devkit-power-gobject/libdevkit-power-gobject.la
|
|
|
|
bin_PROGRAMS = upower
|
|
|
|
upower_SOURCES = \
|
|
egg-debug.c \
|
|
egg-debug.h \
|
|
up-tool.c \
|
|
$(BUILT_SOURCES)
|
|
|
|
upower_CPPFLAGS = \
|
|
$(AM_CPPFLAGS)
|
|
|
|
upower_LDADD = \
|
|
$(DBUS_GLIB_LIBS) \
|
|
$(DEVKIT_POWER_LIBS) \
|
|
$(POLKIT_DBUS_LIBS)
|
|
|
|
install-exec-hook:
|
|
cd $(DESTDIR)$(bindir) && $(LN_S) -f upower devkit-power
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
clean-local :
|
|
rm -f *~ $(service_DATA) $(dbusconf_DATA)
|