From f59d7438e2498b9a7dcaf3d95e403069338ca0e2 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 13 Mar 2000 16:59:34 +0000 Subject: Added an E_FOLDER_CONTACTS section to the get_view function. 2000-03-13 Christopher James Lahey * shell/e-shell-view.c: Added an E_FOLDER_CONTACTS section to the get_view function. * addressbook/demo/Makefile.am: Added files for addressbook bonobo component. Changed non bonobo version to compile as test-addressbook. * addressbook/demo/addressbook.c, addressbook/demo/addressbook.gnorba, addressbook/demo/addressbook.h, addressbook/demo/addressbook-factory.c, addressbook/demo/addressbook-widget.c, addressbook/demo/addressbook-widget.h: New factory to create an addressbook bonobo component. svn path=/trunk/; revision=2114 --- addressbook/demo/Makefile.am | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) (limited to 'addressbook/demo/Makefile.am') diff --git a/addressbook/demo/Makefile.am b/addressbook/demo/Makefile.am index 27b438549c..4a7f39a503 100644 --- a/addressbook/demo/Makefile.am +++ b/addressbook/demo/Makefile.am @@ -5,21 +5,52 @@ INCLUDES = \ -I$(top_srcdir)/e-util \ -I$(top_srcdir)/widgets/e-table \ -I$(top_srcdir) \ - -I$(top_srcdir)/widgets/e-minicard + -I$(top_srcdir)/widgets/e-minicard \ + $(BONOBO_HTML_GNOME_CFLAGS) \ + -DEVOLUTION_VERSION=\""$(VERSION)"\" \ + -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ + -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \ + -DEVOLUTION_LOCALEDIR=\""$(datadir)/locale"\" \ + -DCAMEL_PROVIDERDIR=\""$(providerdir)"\" noinst_PROGRAMS = \ + test-addressbook + +test_addressbook_SOURCES = \ + demo.c \ + e-test-model.c \ + e-test-model.h + +test_addressbook_LDADD = \ + $(EXTRA_GNOME_LIBS) \ + $(top_builddir)/widgets/e-minicard/libeminicard.a \ + $(top_builddir)/widgets/e-table/libetable.a \ + $(top_builddir)/widgets/e-text/libetext.a \ + $(top_builddir)/e-util/libeutil.la + +test_addressbook_LDFLAGS = `gnome-config --libs gdk_pixbuf` + +bin_PROGRAMS = \ evolution-addressbook evolution_addressbook_SOURCES = \ - demo.c \ + addressbook-factory.c \ + addressbook-widget.c \ + addressbook-widget.h \ + addressbook.c \ + addressbook.h \ e-test-model.c \ e-test-model.h evolution_addressbook_LDADD = \ $(EXTRA_GNOME_LIBS) \ + $(BONOBO_HTML_GNOME_LIBS) \ $(top_builddir)/widgets/e-minicard/libeminicard.a \ $(top_builddir)/widgets/e-table/libetable.a \ $(top_builddir)/widgets/e-text/libetext.a \ $(top_builddir)/e-util/libeutil.la evolution_addressbook_LDFLAGS = `gnome-config --libs gdk_pixbuf` + +gnorbadir = $(sysconfdir)/CORBA/servers +gnorba_DATA = addressbook.gnorba -- cgit