mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-05-23 06:58:12 +02:00
27 lines
543 B
Makefile
27 lines
543 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir)/src -I$(top_srcdir)/src \
|
|
-DUP_COMPILATION \
|
|
-DG_LOG_DOMAIN=\"UPower-Openbsd\" \
|
|
-I$(top_srcdir)/libupower-glib \
|
|
$(DBUS_GLIB_CFLAGS) \
|
|
$(POLKIT_CFLAGS) \
|
|
$(GLIB_CFLAGS)
|
|
|
|
if BACKEND_TYPE_OPENBSD
|
|
noinst_LTLIBRARIES = libupshared.la
|
|
endif
|
|
|
|
libupshared_la_SOURCES = \
|
|
up-backend.c \
|
|
up-native.c \
|
|
up-apm-native.h \
|
|
$(BUILT_SOURCES)
|
|
|
|
libupshared_la_CFLAGS = \
|
|
$(WARNINGFLAGS_C)
|
|
|
|
clean-local :
|
|
rm -f *~
|
|
|