# A makefile for the craps example
#
# Simon Parsons
# May 31st 2009

# Default target
.PHONY: all
all: craps

# A rule to build craps
craps: craps.cpp
	g++ -o craps craps.cpp

# This rule tells make to delete all the output files
.PHONY: clean
clean:
	rm craps