######################################################################## # # ######################################################################### CC = g++ COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread # COPTS = -fPIC -DLINUX -g -O0 -Wall -std=c++17 -lpthread ROOTLIBS = `root-config --cflags --glibs` ALL = Bin2Root ######################################################################### all : $(ALL) clean : /bin/rm -f $(OBJS) $(ALL) Bin2Root : Bin2Root.cpp BinReader.h @echo "--------- making Bin2Root" $(CC) $(COPTS) -o Bin2Root Bin2Root.cpp BinReader.h $(ROOTLIBS)