From: Traun Leyden Date: Fri, 14 Dec 2007 04:05:01 +0000 (+0000) Subject: add libclean target to do make clean in all libs subdirs X-Git-Tag: v1.0-rc1~1067 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa963b0dc7464b8a5832456c153d7e1d6ddc58e3;p=thirdparty%2Ffreeswitch.git 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 --- 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