34 lines
823 B
Makefile
34 lines
823 B
Makefile
privsolib_LTLIBRARIES = libeabutil.la
|
|
|
|
libeabutil_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-DPREFIX=\"$(prefix)\" \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-DLIBDIR=\"$(libdir)\" \
|
|
-DG_LOG_DOMAIN=\"EBook\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/shell \
|
|
-I$(top_srcdir)/shell \
|
|
-I$(top_srcdir)/widgets \
|
|
$(EVOLUTION_ADDRESSBOOK_CFLAGS)
|
|
|
|
libeabutil_la_SOURCES = \
|
|
addressbook.c \
|
|
addressbook.h \
|
|
eab-book-util.c \
|
|
eab-book-util.h
|
|
|
|
libeabutil_la_LDFLAGS = $(NO_UNDEFINED)
|
|
|
|
libeabutil_la_LIBADD = \
|
|
$(EVOLUTION_ADDRESSBOOK_LIBS) \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.la \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/shell/libeshell.la
|
|
|
|
dist-hook:
|
|
cd $(distdir); rm -f $(BUILT_SOURCES)
|
|
|
|
-include $(top_srcdir)/git.mk
|