diff options
Diffstat (limited to 'addressbook/gui/widgets/Makefile.am')
-rw-r--r-- | addressbook/gui/widgets/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/Makefile.am b/addressbook/gui/widgets/Makefile.am index dbc38f62e2..aa9d26e067 100644 --- a/addressbook/gui/widgets/Makefile.am +++ b/addressbook/gui/widgets/Makefile.am @@ -17,10 +17,28 @@ INCLUDES = \ -DLIBGNOMEUI_DISABLE_DEPRECATED \ $(EVOLUTION_ADDRESSBOOK_CFLAGS) +CORBA_COMPOSER_SOURCE_H = \ + Evolution-Composer.h +CORBA_COMPOSER_SOURCE_C = \ + Evolution-Composer-common.c \ + Evolution-Composer-skels.c \ + Evolution-Composer-stubs.c +CORBA_COMPOSER_IDL = $(srcdir)/../../../composer/Evolution-Composer.idl + +$(CORBA_COMPOSER_SOURCE_H): $(CORBA_COMPOSER_IDL) + $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) $(CORBA_COMPOSER_IDL) + +$(CORBA_COMPOSER_SOURCE_C): $(CORBA_COMPOSER_SOURCE_H) + +CORBA_SOURCE_H = $(CORBA_COMPOSER_SOURCE_H) +CORBA_SOURCE_C = $(CORBA_COMPOSER_SOURCE_C) +CORBA_SOURCE = $(CORBA_SOURCE_H) $(CORBA_SOURCE_C) + noinst_LIBRARIES = \ libeminicard.a libeminicard_a_SOURCES = \ + $(CORBA_SOURCE) \ e-addressbook-marshal.c \ e-addressbook-reflow-adapter.c \ e-addressbook-reflow-adapter.h \ @@ -70,6 +88,12 @@ e-addressbook-marshal.c: e-addressbook-marshal.h MARSHAL_GENERATED = e-addressbook-marshal.c e-addressbook-marshal.h +BUILT_SOURCES = $(CORBA_SOURCE) $(MARSHAL_GENERATED) +CLEANFILES = $(BUILT_SOURCES) + +dist-hook: + cd $(distdir); rm -f $(BUILT_SOURCES) + #noinst_PROGRAMS = \ # minicard-widget-test \ # minicard-label-test \ |