diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-11 01:29:19 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-11 01:29:19 +0800 |
commit | 29fb1732b2f2d50bc6bba812394621dc5df27fda (patch) | |
tree | 17e8eb25cb10bac52c151adb55b3cd06ef573aad /my-evolution/Makefile.am | |
parent | efd467f902f7b37b4114f28191ced2b209d72af0 (diff) | |
download | gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar.gz gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar.zst gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.zip |
Split the IDL generated rules so ${ORBIT_IDL}
doesn't get invoked multiple times in parallel.
(BUILT_SOURCES): Added this.
(CLEANFILES): And this.
svn path=/trunk/; revision=19873
Diffstat (limited to 'my-evolution/Makefile.am')
-rw-r--r-- | my-evolution/Makefile.am | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/my-evolution/Makefile.am b/my-evolution/Makefile.am index 0cb6e8ca02..e86b7c9e5f 100644 --- a/my-evolution/Makefile.am +++ b/my-evolution/Makefile.am @@ -18,17 +18,20 @@ INCLUDES = \ IDLS = \ $(top_srcdir)/mail/Mailer.idl -MAIL_GENERATED = \ - Mailer.h \ +IDL_GENERATED_H = \ + Mailer.h +IDL_GENERATED_C = \ Mailer-common.c \ Mailer-skels.c \ Mailer-stubs.c +IDL_GENERATED = $(IDL_GENERATED_C) $(IDL_GENERATED_H) -$(MAIL_GENERATED): $(IDLS) +$(IDL_GENERATED_H): $(IDLS) $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) $(top_srcdir)/mail/Mailer.idl +$(IDL_GENERATED_C): $(IDL_GENERATED_H) summary_sources = \ - $(MAIL_GENERATED) \ + $(IDL_GENERATED) \ component-factory.c \ component-factory.h \ e-cell-tri.c \ @@ -123,5 +126,8 @@ EXTRA_DIST = \ check-filled.xpm \ check-none.xpm +BUILT_SOURCES = $(IDL_GENERATED) +CLEANFILES = $(BUILT_SOURCES) + dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |