# 
#$Log:	makefile,v $
# Revision 1.8  97/04/22  11:44:22  esb
# changed http-inetd.str to httpinetd.str
# 
# Revision 1.7  96/09/17  16:28:56  esb
# added http-inetd.str
# 
# Revision 1.6  1996/03/02  18:26:17  cstone
# added boast.sml
#
# Revision 1.5  1995/10/25  19:11:43  esb
# changed to reflect newer version
#
# Revision 1.4  1995/03/15  19:04:00  cstone
# Only checks out files when RCS is newer.
#
# Revision 1.3  1995/03/08  20:33:32  cstone
# Fixed filename typo
#
# Revision 1.2  1995/03/08  20:25:13  cstone
# added new filenames.
#
# Revision 1.1  1995/01/25  22:49:11  cstone
# Initial revision
#

SHELL := /bin/csh
COMMA := ,
PWD := $(shell pwd)
FILES := boast.sml httpd.sig httpd.fun httpd.tst httpinetd.str
DIRS := 

all: make populate

make: 
	co makefile
	$(foreach dir,${DIRS}, cd ${PWD}/${dir}; gmake make;)

${FILES}: %: RCS/%${COMMA}v
	co $@

populate: ${FILES}
	$(foreach dir,${DIRS}, cd ${PWD}/${dir}; gmake populate;)

clean: 
	find . -type f -name "*~"  -print -exec rm {} \;
	find . -type f -name "#*#" -print -exec rm {} \;

