diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-03-06 01:46:48 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-03-06 01:46:48 +0800 |
commit | bc48dcb0a240353125ebad1b2f5e06c4c4ce542a (patch) | |
tree | c68408f13420df7c05bc5bf7528838fe51d5c698 /shell | |
parent | cdac8a4da759cb6a90f6709a434c3a38f2060345 (diff) | |
download | gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.tar gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.tar.gz gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.tar.bz2 gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.tar.lz gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.tar.xz gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.tar.zst gsoc2013-evolution-bc48dcb0a240353125ebad1b2f5e06c4c4ce542a.zip |
(BUILT_SOURCES): $(IDL_GENERATED), not
$(IDL_GENERATED_H).
(CLEANFILES): Make the same as $(BUILT_SOURCES).
(GNOME_Evolution_Importer-impl.o): Removed useless rule.
svn path=/trunk/; revision=20175
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/importer/Makefile.am | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index fcb145e8b2..72d07e6bb0 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2003-03-05 Ettore Perazzoli <ettore@ximian.com> + + * importer/Makefile.am (BUILT_SOURCES): $(IDL_GENERATED), not + $(IDL_GENERATED_H). + (CLEANFILES): Make the same as $(BUILT_SOURCES). + (GNOME_Evolution_Importer-impl.o): Removed useless rule. + 2003-03-04 Mike Kestner <mkestner@ximian.com> * e-shell-view.c (update_for_current_uri): only set current diff --git a/shell/importer/Makefile.am b/shell/importer/Makefile.am index 103dfb8312..094df408d1 100644 --- a/shell/importer/Makefile.am +++ b/shell/importer/Makefile.am @@ -23,13 +23,10 @@ IDL_GENERATED_C = \ IDL_GENERATED = $(IDL_GENERATED_H) $(IDL_GENERATED_C) -GNOME_Evolution_Importer-impl.o: GNOME_Evolution_Importer.h - $(IDL_GENERATED_H): $(IDLS) $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) $(srcdir)/GNOME_Evolution_Importer.idl $(IDL_GENERATED_C): $(IDL_GENERATED_H) - @true idl_DATA = $(IDLS) @@ -61,8 +58,8 @@ glade_DATA = import.glade EXTRA_DIST = $(glade_DATA) $(IDLS) -BUILT_SOURCES= $(IDL_GENERATED_H) -CLEANFILES = $(IDL_GENERATED) +BUILT_SOURCES= $(IDL_GENERATED) +CLEANFILES = $(BUILT_SOURCES) dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |