CXX = g++
CC = g++

all:		hello

test:		all
	./hello

clobber:
	rm -f *.o core *.exe hello
