#
.PHONY: all  clean test 


all: 
	@echo "To compile   make xxx"
readMtbl:
	make -f readMtbl.mk

clean:
	@rm -f *.o core  *~ 

