diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-29 02:17:04 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-29 02:17:04 +0800 |
commit | ff047f4ed5f3fae2072505ca5b14d35a6e1bdea7 (patch) | |
tree | e595cadb2187b603b96fc9bb7be2242c9bf5760d /shell/importer | |
parent | ef0b77769db54f4c9165be337579775e6e3c6660 (diff) | |
download | gsoc2013-evolution-ff047f4ed5f3fae2072505ca5b14d35a6e1bdea7.tar.gz gsoc2013-evolution-ff047f4ed5f3fae2072505ca5b14d35a6e1bdea7.tar.zst gsoc2013-evolution-ff047f4ed5f3fae2072505ca5b14d35a6e1bdea7.zip |
Make this work with parallel make as well.
svn path=/trunk/; revision=19671
Diffstat (limited to 'shell/importer')
-rw-r--r-- | shell/importer/Makefile.am | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/shell/importer/Makefile.am b/shell/importer/Makefile.am index d0fff6253e..94f532db3c 100644 --- a/shell/importer/Makefile.am +++ b/shell/importer/Makefile.am @@ -9,22 +9,34 @@ INCLUDES = \ privlib_LTLIBRARIES = libevolution-importer.la + +# IDL stuff + IDLS = GNOME_Evolution_Importer.idl -IDL_GENERATED = \ - GNOME_Evolution_Importer.h \ +IDL_GENERATED_H = \ + GNOME_Evolution_Importer.h + +IDL_GENERATED_C = \ GNOME_Evolution_Importer-common.c \ GNOME_Evolution_Importer-skels.c \ GNOME_Evolution_Importer-stubs.c +IDL_GENERATED = $(IDL_GENERATED_H) $(IDL_GENERATED_C) + GNOME_Evolution_Importer-impl.o: GNOME_Evolution_Importer.h -$(IDL_GENERATED): $(IDLS) - $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \ - $(srcdir)/GNOME_Evolution_Importer.idl +$(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) + +# Component + libevolution_importerincludedir = $(includedir)/evolution-$(BASE_VERSION)/importer libevolution_importer_la_SOURCES = \ $(IDL_GENERATED) \ @@ -51,8 +63,9 @@ glade_DATA = import.glade EXTRA_DIST = $(glade_DATA) $(IDLS) -BUILT_SOURCES=$(IDL_GENERATED) -CLEANFILES = $(BUILT_SOURCES) +BUILT_SOURCES= $(IDL_GENERATED_H) +CLEANFILES = $(IDL_GENERATED) + dist-hook: cd $(distdir); rm -f $(BUILT_SOURCES) |