diff options
author | Peter Williams <peterw@ximian.com> | 2001-07-12 22:20:41 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-07-12 22:20:41 +0800 |
commit | a2b6de72927d6648e527560ebb9dbf284400b544 (patch) | |
tree | 28106225ed9ae5442c297784a17ceb2aeb4e2b5e /help/devel/calendar/cal-util/Makefile.am | |
parent | 759186b97f9dcb4446494f6f2f3f680242e749a0 (diff) | |
download | gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.tar gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.tar.gz gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.tar.bz2 gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.tar.lz gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.tar.xz gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.tar.zst gsoc2013-evolution-a2b6de72927d6648e527560ebb9dbf284400b544.zip |
Clean up make dist.
2001-07-10 Peter Williams <peterw@ximian.com>
* */Makefile.am (dist-hook): Clean up make dist.
svn path=/trunk/; revision=11039
Diffstat (limited to 'help/devel/calendar/cal-util/Makefile.am')
-rw-r--r-- | help/devel/calendar/cal-util/Makefile.am | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/help/devel/calendar/cal-util/Makefile.am b/help/devel/calendar/cal-util/Makefile.am index b7c75c5e5a..fa5effcb31 100644 --- a/help/devel/calendar/cal-util/Makefile.am +++ b/help/devel/calendar/cal-util/Makefile.am @@ -185,17 +185,12 @@ endif dist-hook: dist-check-gtkdoc dist-hook-local mkdir $(distdir)/tmpl - mkdir $(distdir)/html - -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl - -cp $(srcdir)/sgml/*.sgml $(distdir)/sgml - -cp $(srcdir)/html/index.sgml $(distdir)/html - -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html - images=$(HTML_IMAGES) ; \ - for i in $$images ; do \ - cp $(srcdir)/$$i $(distdir)/html ; \ - done - -# Done automatically by automake in doc/devel -# mkdir $(distdir)/sgml + mkdir $(distdir)/sgml + files=`echo $(srcdir)/tmpl/*.sgml` ; \ + test '$(srcdir)/tmpl/*.sgml' = "$$files" \ + || cp $$files $(distdir)/tmpl + files=`echo $(srcdir)/sgml/*.sgml` ; \ + test '$(srcdir)/sgml/*.sgml' = "$$files" \ + || cp $$files $(distdir)/sgml .PHONY : dist-hook-local
\ No newline at end of file |