# $Id: Makefile,v 1.1 2006/05/24 00:12:59 schuppan Exp $

all: prepare

prepare:
	if [ ! -d runsymm ]; then mkdir runsymm; fi
	if [ ! -d runbmc ]; then mkdir runbmc; fi

checkprepared:
	if [ ! -d runsymm ]; then \
	    echo "run make prepare first"; exit 1; \
	fi
	if [ ! -d runbmc ]; then \
	    echo "run make prepare first"; exit 1; \
	fi

clean:
	rm -f *~

distclean: clean
	rm -rf runsymm
	rm -rf runbmc

.PHONY: all prepare checkprepared clean distclean

.SILENT:
