$(info *-----------------------------------------------------------------------*)
$(info * You can build with ROOT capability provided ROOT is installed         *)
$(info * and the root library paths are permanently set in your .bash_profile  *)
$(info * otherwise please build without ROOT capability                        *)
$(info *-----------------------------------------------------------------------*)
OPTION ?= $(shell read -p "Build with ROOT capability?(y/n)" x; echo $$x)
EXEDIR = ../
all:
ifeq ($(OPTION),y)
	make -f MakeWithRoot
else
	make -f MakeWithoutRoot
endif
clean:
	rm -f *.o $(EXEDIR)lamps $(EXEDIR)mkword $(EXEDIR)zmass


