aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--my-evolution/ChangeLog7
-rw-r--r--my-evolution/Makefile.am14
2 files changed, 17 insertions, 4 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index 599b9b6ba2..c4bdf569a0 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,10 @@
+2003-02-10 Ettore Perazzoli <ettore@ximian.com>
+
+ * Makefile.am: Split the IDL generated rules so ${ORBIT_IDL}
+ doesn't get invoked multiple times in parallel.
+ (BUILT_SOURCES): Added this.
+ (CLEANFILES): And this.
+
2003-02-06 Dan Winship <danw@ximian.com>
* Makefile.am (INCLUDES): Fix typo in previous commit
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)