aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-02-11 01:28:37 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-02-11 01:28:37 +0800
commitefd467f902f7b37b4114f28191ced2b209d72af0 (patch)
treeabdc73f26b7345a8419a07002346d21141622192 /calendar/gui/dialogs
parent48c9c3dc71e7381fdabdefaddc29fd9b44fa0b6c (diff)
downloadgsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar
gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar.gz
gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar.bz2
gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar.lz
gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar.xz
gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar.zst
gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.zip
Make the CORBA IDL compilation work with parallel makes. Likewise.
* gui/Makefile.am: Make the CORBA IDL compilation work with parallel makes. * gui/dialogs/Makefile.am: Likewise. * gui/alarm-notify/Makefile.am: Likewise. svn path=/trunk/; revision=19872
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/Makefile.am b/calendar/gui/dialogs/Makefile.am
index 97f67831cf..a4ffff5f17 100644
--- a/calendar/gui/dialogs/Makefile.am
+++ b/calendar/gui/dialogs/Makefile.am
@@ -1,14 +1,17 @@
IDLS = $(top_srcdir)/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
-IDL_GENERATED = \
- Evolution-Addressbook-SelectNames.h \
+IDL_GENERATED_H = \
+ Evolution-Addressbook-SelectNames.h
+IDL_GENERATED_C = \
Evolution-Addressbook-SelectNames-common.c \
Evolution-Addressbook-SelectNames-skels.c \
Evolution-Addressbook-SelectNames-stubs.c
+IDL_GENERATED = $(IDL_GENERATED_C) $(IDL_GENERATED_H)
-$(IDL_GENERATED): $(IDLS)
+$(IDL_GENERATED_H): $(IDLS)
$(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \
$(top_srcdir)/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl
+$(IDL_GENERATED_C): $(IDL_GENERATED_H)
BUILT_SOURCES = $(IDL_GENERATED)