You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/03/31 03:15:05 UTC

[46/51] git commit: Remove config.nice during distclean.

Remove config.nice during distclean.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/5774cc43
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/5774cc43
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/5774cc43

Branch: refs/heads/3.3.x
Commit: 5774cc439294a99dc8f1661da401fa93ed1c8514
Parents: 4e53792
Author: James Peach <jp...@apache.org>
Authored: Thu Mar 28 11:19:30 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Thu Mar 28 11:19:30 2013 -0700

----------------------------------------------------------------------
 Makefile.am |   29 ++++++++++++++++-------------
 1 files changed, 16 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/5774cc43/Makefile.am
----------------------------------------------------------------------
diff --git a/Makefile.am b/Makefile.am
index 939f822..46cf284 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -44,6 +44,9 @@ test: check
 installcheck-local:
 	$(DESTDIR)$(bindir)/traffic_server -R 1
 
+distclean-local:
+	-rm -f config.nice
+
 doxygen:
 	@cd doc && $(MAKE) $(AM_MAKEFLAGS) $@
 
@@ -73,17 +76,17 @@ install-data-hook:
 
 help:
 	@echo 'all              default target for building the package' && \
-   echo 'check            run the test suite, if any' && \
-   echo 'clean            remove whatever make created' && \
-   echo 'distclean        remove whatever configure created' && \
-   echo 'dist             DEPRECATED: recreate source package' && \
-   echo 'examples         make examples' && \
-   echo 'asf-dist         recreate source package' && \
-   echo 'asf-dist-sign    recreate source package, with checksums and signature' && \
-   echo 'distcheck        verify dist by performing VPATH build and then distclean' && \
-   echo 'doxygen          generate doxygen docs in doc/html dir' && \
-   echo 'help             display this list of make targets' && \
-   echo 'install          install by copying the built files to system-wide dirs' && \
-   echo 'install-strip    same as install but then strips debugging symbols' && \
-   echo 'install-examples install examples by copying the built files to system-wide dirs'
+	echo 'check            run the test suite, if any' && \
+	echo 'clean            remove whatever make created' && \
+	echo 'distclean        remove whatever configure created' && \
+	echo 'dist             DEPRECATED: recreate source package' && \
+	echo 'examples         make examples' && \
+	echo 'asf-dist         recreate source package' && \
+	echo 'asf-dist-sign    recreate source package, with checksums and signature' && \
+	echo 'distcheck        verify dist by performing VPATH build and then distclean' && \
+	echo 'doxygen          generate doxygen docs in doc/html dir' && \
+	echo 'help             display this list of make targets' && \
+	echo 'install          install by copying the built files to system-wide dirs' && \
+	echo 'install-strip    same as install but then strips debugging symbols' && \
+	echo 'install-examples install examples by copying the built files to system-wide dirs'