all:
	make clean &
	make TDTP
TDTP:
	g++ genome/main/TDTP.cpp -o TDTP
	echo TDTP created
clean:
	rm TDTP

