aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/cal-client/Makefile.am6
2 files changed, 12 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 09cd95766d..a6b45ec4c8 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2003-01-14 Ettore Perazzoli <ettore@ximian.com>
+
+ * cal-client/Makefile.am (CORBA_SOURCES_GENERATED): Renamed from
+ CORBA_GENERATED.
+ (CORBA_GENERATED): New, put both $(CORBA_SOURCES_GENERATED) and
+ $(CORBA_HEADERS_GENERATED) in it.
+ (BUILT_SOURCES): Put $(CORBA_GENERATED) in here.
+
2003-01-14 Hans Petter Jansson <hpj@ximian.com>
* gui/e-calendar-table.c (tasks_popup_menu): Cast signal handlers
diff --git a/calendar/cal-client/Makefile.am b/calendar/cal-client/Makefile.am
index 1d8d9203ab..acd994499d 100644
--- a/calendar/cal-client/Makefile.am
+++ b/calendar/cal-client/Makefile.am
@@ -2,7 +2,7 @@
# libcal-client
#
-CORBA_GENERATED = \
+CORBA_SOURCES_GENERATED = \
evolution-calendar-common.c \
evolution-calendar-skels.c \
evolution-calendar-stubs.c
@@ -10,6 +10,8 @@ CORBA_GENERATED = \
CORBA_HEADERS_GENERATED = \
evolution-calendar.h
+CORBA_GENERATED = $(CORBA_SOURCES_GENERATED) $(CORBA_HEADERS_GENERATED)
+
idls = \
$(srcdir)/../idl/evolution-calendar.idl
@@ -37,7 +39,7 @@ lib_LTLIBRARIES = libcal-client.la
libcal_clientincludedir = $(includedir)/evolution/cal-client
libcal_client_la_SOURCES = \
- $(CORBA_GENERATED) \
+ $(CORBA_SOURCES_GENERATED) \
cal-client-multi.c \
cal-client-types.c \
cal-client.c \