# a simple makefile to demonstrate simplectest
# http://simplectest.sf.net/
# this file is in the public domain :>

all: simple

clean:
	-rm *.o *.exe

.PHONY: all clean
