diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-11 01:28:37 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-02-11 01:28:37 +0800 |
commit | efd467f902f7b37b4114f28191ced2b209d72af0 (patch) | |
tree | abdc73f26b7345a8419a07002346d21141622192 /calendar/gui/dialogs | |
parent | 48c9c3dc71e7381fdabdefaddc29fd9b44fa0b6c (diff) | |
download | gsoc2013-evolution-efd467f902f7b37b4114f28191ced2b209d72af0.tar.gz 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.am | 9 |
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) |