#
.PHONY: all lpt


all: 
	@echo "To compile testlpt.f;  make lpt"
	
lpt:
	make -f lpt.mk
	rm -f /tmp/*.f

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

