From aa963b0dc7464b8a5832456c153d7e1d6ddc58e3 Mon Sep 17 00:00:00 2001 From: Traun Leyden Date: Fri, 14 Dec 2007 04:05:01 +0000 Subject: [PATCH] add libclean target to do make clean in all libs subdirs git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6787 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index e473503ec1..4344d11dc2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -297,6 +297,9 @@ eclean: clean megaclean: eclean modclean rm -f `find ./libs -name \*.la` +libclean: + @for file in `ls ./libs`; do pushd "./libs/"$$file; make clean; popd; done + modules.conf: if test -f $@; then touch $@; else cp build/modules.conf.in $@ ;fi