blob: b7a501f746e083345f75339251fb59cc3c0fc772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-I$(top_builddir)/src -I$(top_srcdir)/src \
-I$(top_builddir)/ -I$(top_srcdir)/ \
-DUP_COMPILATION \
-DG_LOG_DOMAIN=\"UPower-Openbsd\" \
-I$(top_srcdir)/libupower-glib \
$(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 *~
-include $(top_srcdir)/git.mk
|