
ALL = testpair

all : $(ALL)

testpair : testpair.cpp pair.h
	c++ $@.cpp -o $@

clean :
	rm -f $(ALL)
