Changeset 41580 in webkit


Ignore:
Timestamp:
Mar 11, 2009 4:57:43 AM (15 years ago)
Author:
jmalonzo@webkit.org
Message:

2009-03-11 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed by Holger Freyther.

[Gtk] Fix make clean targets
https://bugs.webkit.org/show_bug.cgi?id=24450

Fix 'make' clean targets. We shouldn't be removing DerivedSources
if it's only clean. Only remove it if it's distclean or
maintainer-clean. Also remove build-related auxillary files on
dist/maintainer clean.

  • GNUmakefile.am:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r41579 r41580  
     12009-03-11  Jan Michael Alonzo  <jmalonzo@webkit.org>
     2
     3        Reviewed by Holger Freyther.
     4
     5        [Gtk] Fix make clean targets
     6        https://bugs.webkit.org/show_bug.cgi?id=24450
     7
     8        Fix 'make' clean targets. We shouldn't be removing DerivedSources
     9        if it's only clean. Only remove it if it's distclean or
     10        maintainer-clean. Also remove build-related auxillary files on
     11        dist/maintainer clean.
     12
     13        * GNUmakefile.am:
     14
    1152009-03-11  Jan Michael Alonzo  <jmalonzo@webkit.org>
    216
  • trunk/GNUmakefile.am

    r41428 r41580  
    455455
    456456# Files that will be cleaned
    457 MAINTAINERCLEANFILES := $(stamp_files) $(BUILT_SOURCES)
     457MAINTAINERCLEANFILES := $(stamp_files) $(BUILT_SOURCES) doltcompile doltlibtool
    458458DISTCLEANFILES := $(stamp_files) $(BUILT_SOURCES) doltcompile doltlibtool
    459459CLEANFILES := $(stamp_files) $(BUILT_SOURCES)
     
    503503MAINTAINERCLEANFILES += \
    504504        $(srcdir)/aconfig.h.in \
    505         configure \
    506         config.* \
    507         GNUmakefile.in \
    508         INSTALL \
    509         README
     505        $(srcdir)/autotools/config.* \
     506        $(srcdir)/autotools/compile \
     507        $(srcdir)/autotools/depcomp \
     508        $(srcdir)/autotools/install-sh \
     509        $(srcdir)/autotools/missing \
     510        $(srcdir)/configure \
     511        $(srcdir)/GNUmakefile.in \
     512        $(srcdir)/INSTALL \
     513        $(srcdir)/README \
     514        $(top_builddir)/config.*
    510515
    511516# Older automake versions (1.7) place Plo files in a different place so we need
     
    516521# remove built sources and program directories
    517522clean-local:
     523        -rm -rf $(GENPROGRAMS)
     524
     525maintainer-clean-local distclean-local:
    518526        -rm -rf $(GENSOURCES) $(GENPROGRAMS)
Note: See TracChangeset for help on using the changeset viewer.