#!/bin/sh

find . -type f | grep -v '/\.svn/' | egrep "Makefile$" > list

# Add svn:keywords properties for all files
for FILE in `cat list`
do
svn propset svn:keywords "Id Rev" $FILE
done
# Commit the change
#svn commit -m "Adding Id and Rev property to all files" 
