aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-02-11 01:29:19 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-02-11 01:29:19 +0800
commit29fb1732b2f2d50bc6bba812394621dc5df27fda (patch)
tree17e8eb25cb10bac52c151adb55b3cd06ef573aad
parentefd467f902f7b37b4114f28191ced2b209d72af0 (diff)
downloadgsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar
gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar.gz
gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar.bz2
gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar.lz
gsoc2013-evolution-29fb1732b2f2d50bc6bba812394621dc5df27fda.tar.xz
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
-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)