Suppose this makefile snippet
$(cfstdlib):
svn export --force $(CF_REPO)/masterfiles/trunk/lib/$(VERSION)/
Where cfstdlib is a list of files, and the svn command, run only once, will create all the files the list. When I run make it executes svn for each file in the list. How can I make the svn command run only once?