#
#       Makefile for dcltrf
#

include ../../../Mkinclude


all: dcltrf

dcltrf: dcltrf.f
	$(LBINDIR)/$(DCLFRT) -L$(LIBDIR) -o dcltrf dcltrf.f

install: $(BINDIR)/dcltrf

$(BINDIR)/dcltrf: dcltrf
	@echo "Installing executable program dcltrf"
	@$(CP) dcltrf $(BINDIR)/dcltrf

pack: dcltrf.all

dcltrf.all: dcltrf.f
	@$(CP) dcltrf.f dcltrf.all
	@echo "packed file dcltrf.all is created."

clean:
	$(RM) *.o *~ dcltrf core dcltrf.all
