diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-15 04:51:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-15 04:51:14 +0800 |
commit | a03b38e8cfc4aaf8e694ac9611a561084aa7edad (patch) | |
tree | 900ba6572c0ddf03f7721e8f7df94839fb0d8bda /calendar | |
parent | 67db8b6bdb2af596e7c0471756d9c09e3572f480 (diff) | |
download | gsoc2013-evolution-a03b38e8cfc4aaf8e694ac9611a561084aa7edad.tar.gz gsoc2013-evolution-a03b38e8cfc4aaf8e694ac9611a561084aa7edad.tar.zst gsoc2013-evolution-a03b38e8cfc4aaf8e694ac9611a561084aa7edad.zip |
(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.
svn path=/trunk/; revision=19462
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/cal-client/Makefile.am | 6 |
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 \ |