#!/bin/sh
# Make sure the directories in $* all have some default files.

if [ $# -lt 1 ];then set .;fi
for d
do	if [ -d $d ]
	then
		if [ ! -f $d/Makefile ];then echo>$d/Makefile;fi
		if [ ! -f $d/README   ];then echo>$d/README  ;fi
	fi
done
