#
#       Makefile for dcltrf
#

include ../../../Mkinclude


all: dcltrf

#dcltrf: dcltrf.f
#	$(LBINDIR)/$(DCLFRT) -o dcltrf dcltrf.f
dcltrf: dcltrf.c
	$(LBINDIR)/$(DCLCC) -o dcltrf dcltrf.c

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
dcltrf.all: dcltrf.c
	@$(CP) dcltrf.c dcltrf.all
	@echo "packed file dcltrf.all is created."

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