diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-20 23:11:40 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-20 23:11:40 +0800 |
commit | 0a13b5729550185d3b5aed46b6ae07b1c8ec7578 (patch) | |
tree | fae915812e4a7676666cfe2d55a4825ee6981d7d /calendar/conduits/todo/Makefile.am | |
parent | d420759f1e42dcff24f700a41b8292337269e365 (diff) | |
download | gsoc2013-evolution-0a13b5729550185d3b5aed46b6ae07b1c8ec7578.tar.gz gsoc2013-evolution-0a13b5729550185d3b5aed46b6ae07b1c8ec7578.tar.zst gsoc2013-evolution-0a13b5729550185d3b5aed46b6ae07b1c8ec7578.zip |
Remove a bunch of gal includes that are no longer needed
2003-11-20 JP Rosevear <jpr@ximian.com>
* Remove a bunch of gal includes that are no longer needed
svn path=/trunk/; revision=23457
Diffstat (limited to 'calendar/conduits/todo/Makefile.am')
-rw-r--r-- | calendar/conduits/todo/Makefile.am | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/calendar/conduits/todo/Makefile.am b/calendar/conduits/todo/Makefile.am index 4b4fccc732..0de69d0f66 100644 --- a/calendar/conduits/todo/Makefile.am +++ b/calendar/conduits/todo/Makefile.am @@ -16,17 +16,20 @@ libetodo_conduit_la_LIBADD = \ $(top_builddir)/e-util/libeconduit.la \ $(EVOLUTION_CALENDAR_CONDUIT_LIBS) -e-todo.conduit: e-todo.conduit.in Makefile +e-todo-$(BASE_VERSION).conduit: e-todo.conduit.in sed -e 's^\@prefix\@^$(prefix)^g' \ -e 's^\@datadir\@^$(datadir)^g' \ - < $(srcdir)/e-todo.conduit.in > e-todo.conduit.tmp \ - && mv e-todo.conduit.tmp e-todo.conduit + -e 's^\@BASE_VERSION\@^$(BASE_VERSION)^g' \ + $< > $@ -Conduitdir = $(datadir)/gnome-pilot/conduits/ -Conduit_DATA = e-todo.conduit +conduitdir = $(datadir)/gnome-pilot/conduits/ +conduit_DATA = e-todo-$(BASE_VERSION).conduit + +BUILT_SOURCES = $(conduit_DATA) +CLEANFILES = $(BUILT_SOURCES) EXTRA_DIST = \ e-todo.conduit.in -install-data-local: - $(mkinstalldirs) $(Conduitdir) +dist-hook: + cd $(distdir); rm -f $(BUILT_SOURCES)
\ No newline at end of file |