.PHONY: all test clean

all:
	${MAKE} -C fizzbuzz

test:
	${MAKE} -C fizzbuzz test

clean:
	${MAKE} -C fizzbuzz clean
