2001-06-11 Christopher James Lahey <clahey@ximian.com> * gui/merging/Makefile.am (glade_DATA): Added e-card-merging-book-commit-duplicate-detected.glade here. * gui/merging/e-card-merging-book-commit-duplicate-detected.glade: Added this file. The GUI for asking whether to commit a modified card. * gui/merging/e-card-merging.c, gui/merging/e-card-merging.h (e_card_merging_book_commit_card): Added this function. * gui/widgets/e-addressbook-table-adapter.c (addressbook_set_value_at), gui/widgets/e-addressbook-util.c (commit_card_cb), gui/widgets/e-minicard.c (e_minicard_event): Use e_card_merging_book_commit_card instead of e_book_commit_card here. svn path=/trunk/; revision=10184
24 lines
553 B
Makefile
24 lines
553 B
Makefile
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"e-card-gui\" \
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
|
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/addressbook/backend/ebook \
|
|
$(BONOBO_GNOME_CFLAGS) \
|
|
$(EXTRA_GNOME_CFLAGS)
|
|
|
|
noinst_LIBRARIES = \
|
|
libecardmerging.a
|
|
|
|
libecardmerging_a_SOURCES = \
|
|
e-card-merging.c \
|
|
e-card-merging.h
|
|
|
|
|
|
gladedir = $(datadir)/evolution/glade
|
|
glade_DATA = e-card-duplicate-detected.glade \
|
|
e-card-merging-book-commit-duplicate-detected.glade
|
|
|
|
EXTRA_DIST = \
|
|
$(glade_DATA)
|