#
#       Makefile for dclclr
#

include ../../../Mkinclude


all: dclclr

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

install: $(BINDIR)/dclclr

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

pack: dclclr.all

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

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