I have installed ITensor package and its working. I have checked a few other calculations. Now I am trying to install itebd package using ITensor library. But while installing I am getting an error like this 
itebd.h:14:19: error: ‘ITensorT’ does not name a type; did you mean ‘ITensor’?
         using T = ITensorT;
                   ^~~~~~~~
                   ITensor
itebd.h:22:9: error: ‘ITensorT’ does not name a type; did you mean ‘ITensor’?
         ITensorT measure();
         ^~~~~~~~
         ITensor
My Makefile is like this,
LIBRARY_DIR=$(HOME)/ITensor
HEADERS=itebd.h
include $(LIBRARYDIR)/thisdir.mk
include $(LIBRARY_DIR)/options.mk
cond-mat.0605597: %: %.cpp $(HEADERS)
        $(CCCOM) $< -o $@ $(CCFLAGS) $(LIBFLAGS)
%: %.cpp $(HEADERS)
        $(CCCOM) $< -o $@ $(CCFLAGS) $(LIBFLAGS)
.PHONY: clean
clean:
        find . -maxdepth 1 -type f -name '.[0-9]' ! -name '*.cpp' -exec rm {} +****
So I don't understand why this kind of error is coming, maybe it is very easy to solve but I am unable to get it. 
If could you please help then it will be great.
Thanks in advance.