Changed to use the new BonoboPropertyControl methods, and changed executive-summary-html-view to use the same idea. Added rdf-summary to the .cvsignore, and put a timeout so that it can return imediatly if there is a hold up on the connection. svn path=/trunk/; revision=6905
89 lines
2.5 KiB
Makefile
89 lines
2.5 KiB
Makefile
bin_PROGRAMS = evolution-executive-summary
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/widgets \
|
|
-I$(top_srcdir)/widgets/e-text \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/shell \
|
|
-I$(top_srcdir)/shell \
|
|
-I$(top_builddir)/executive-summary \
|
|
-I$(top_srcdir)/executive-summary \
|
|
-I$(top_builddir)/executive-summary/evolution-services \
|
|
-I$(top_srcdir)/executive-summary/evolution-services \
|
|
$(EXTRA_GNOME_CFLAGS) \
|
|
$(GNOME_VFS_CFLAGS) \
|
|
$(UNICODE_CFLAGS) \
|
|
$(GTKHTML_CFLAGS) \
|
|
-DEVOLUTION_VERSION=\""$(VERSION)"\" \
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
|
-DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
|
|
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
|
|
-DG_LOG_DOMAIN=\"evolution-executive-summary\"
|
|
|
|
CLEANFILES = $(COMPOSER_GENERATED)
|
|
|
|
COMPOSER_GENERATED = \
|
|
Composer.h \
|
|
Composer-common.c \
|
|
Composer-skels.c \
|
|
Composer-stubs.c
|
|
|
|
Composer-impl.o: Composer.h
|
|
|
|
selectnamesdir = $(top_srcdir)/addressbook/gui/component/select-names
|
|
|
|
IDLS = \
|
|
$(selectnamesdir)/Evolution-Addressbook-SelectNames.idl \
|
|
$(top_srcdir)/composer/Evolution-Composer.idl \
|
|
$(top_srcdir)/composer/Composer.idl
|
|
|
|
$(COMPOSER_GENERATED): $(IDLS)
|
|
$(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` \
|
|
$(top_srcdir)/composer/Composer.idl
|
|
|
|
evolution_executive_summary_SOURCES = \
|
|
$(COMPOSER_GENERATED) \
|
|
component-factory.c \
|
|
component-factory.h \
|
|
e-summary.c \
|
|
e-summary.h \
|
|
e-summary-callbacks.c \
|
|
e-summary-callbacks.h \
|
|
e-summary-factory.c \
|
|
e-summary-factory.h \
|
|
e-summary-prefs.c \
|
|
e-summary-prefs.h \
|
|
e-summary-url.c \
|
|
e-summary-url.h \
|
|
e-summary-util.c \
|
|
e-summary-util.h \
|
|
main.c
|
|
|
|
evolution_executive_summary_LDADD = \
|
|
$(top_builddir)/shell/libeshell.a \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/executive-summary/evolution-services/libevolution-services.la \
|
|
$(BONOBO_VFS_GNOME_LIBS) \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
-lgal \
|
|
$(GTKHTML_LIBS) \
|
|
$(UNICODE_LIBS)
|
|
|
|
gladedir = $(datadir)/evolution/glade
|
|
glade_DATA = executive-summary-config.glade
|
|
|
|
if ENABLE_PURIFY
|
|
PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
all-local: evolution-executive-summary.pure
|
|
|
|
evolution-executive-summary.pure: evolution-executive-summary
|
|
@rm -f evolution-executive-summary.pure
|
|
$(PLINK) $(evolution_executive_summary_OBJECTS) $(evolution_executive_summary_LDADD) $(LIBS)
|
|
|
|
endif
|
|
|
|
EXTRA_DIST = $(glade_DATA)
|