#
# Makefile for example programs
#

all: 
	-@echo "make: Nothing to be done for \`all'."

test: 
	@./runall

clean: 
	rm -f *.out
