--------------------- PatchSet 926 Date: 2000/12/15 13:24:42 Author: rbcollins Branch: auth_digest Tag: (none) Log: missing files Members: digest_auth_modules/Makefile.in:1.1->1.1.2.1 --- /dev/null Wed Feb 14 00:45:56 2007 +++ squid/digest_auth_modules/Makefile.in Wed Feb 14 00:47:16 2007 @@ -0,0 +1,38 @@ +# Makefile for digest auth helpers in the Squid Object Cache server +# +# $Id: Makefile.in,v 1.1.2.1 2000/12/15 13:24:42 rbcollins Exp $ +# + +# The 'nop' is in the SUBDIRS list because some Unixes that can't +# handle empty for lists. + +SUBDIRS = @AUTH_DIGEST_MODULES@ nop + +all: + @for dir in $(SUBDIRS); do \ + if [ -f $$dir/Makefile ]; then \ + sh -c "cd $$dir && $(MAKE) all" || exit 1; \ + fi; \ + done; + +clean: + -for dir in *; do \ + if [ -f $$dir/Makefile ]; then \ + sh -c "cd $$dir && $(MAKE) clean"; \ + fi; \ + done + +distclean: + -rm -f Makefile + -for dir in *; do \ + if [ -f $$dir/Makefile ]; then \ + sh -c "cd $$dir && $(MAKE) distclean"; \ + fi; \ + done + +.DEFAULT: + @for dir in $(SUBDIRS); do \ + if [ -f $$dir/Makefile ]; then \ + sh -c "cd $$dir && $(MAKE) $@" || exit 1; \ + fi; \ + done;