diff options
author | Radek Doulik <rodo@ximian.com> | 2002-05-09 04:29:59 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2002-05-09 04:29:59 +0800 |
commit | 06bd4d2a16b4b39f485363f10dd272d529e3f16a (patch) | |
tree | 5e9c52a2d923c2d56d5d640452dc8ec2360c55bd /mail/Makefile.am | |
parent | d2dcf693478ffa592718d36e7c45bc3872691c90 (diff) | |
download | gsoc2013-evolution-06bd4d2a16b4b39f485363f10dd272d529e3f16a.tar.gz gsoc2013-evolution-06bd4d2a16b4b39f485363f10dd272d529e3f16a.tar.zst gsoc2013-evolution-06bd4d2a16b4b39f485363f10dd272d529e3f16a.zip |
implemented (c'n'p-ed and updated) spell checking settings
2002-05-08 Radek Doulik <rodo@ximian.com>
* mail-composer-prefs.c: implemented (c'n'p-ed and updated) spell
checking settings
svn path=/trunk/; revision=16728
Diffstat (limited to 'mail/Makefile.am')
-rw-r--r-- | mail/Makefile.am | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/mail/Makefile.am b/mail/Makefile.am index dba25abaf8..0cb4c3f378 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -40,10 +40,24 @@ EVOLUTION_MAIL_NNTP = \ mail-account-editor-news.h endif +SPELL_IDL = Spell.idl + +IDL_GENERATED = \ + Spell.h \ + Spell-common.c \ + Spell-skels.c \ + Spell-stubs.c + +$(IDL_GENERATED): $(SPELL_IDL) + $(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl -I `$(GNOME_CONFIG) --cflags idl` \ + -I `$(GNOME_CONFIG) --datadir`/idl $(srcdir)/Spell.idl + +Spell-impl.o: Spell.h evolution_mail_SOURCES = \ $(EVOLUTION_MAIL_CORBA_GENERATED) \ $(EVOLUTION_MAIL_NNTP) \ + $(IDL_GENERATED) \ component-factory.c \ component-factory.h \ e-searching-tokenizer.c \ @@ -183,8 +197,8 @@ evolution-mail.pure: evolution-mail endif -BUILT_SOURCES = $(EVOLUTION_MAIL_CORBA_GENERATED) -CLEANFILES = $(BUILT_SOURCES) - dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) + +BUILT_SOURCES = $(EVOLUTION_MAIL_CORBA_GENERATED) +CLEANFILES = $(BUILT_SOURCES) $(IDL_GENERATED) |