#
#       Makefile for dclclr
#

include ../../../Mkinclude


all: dclclr

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

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
