######################################################################## # # ######################################################################### CC = g++ #COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread COPTS = -fPIC -DLINUX -g -std=c++17 -lpthread CAENLIBS = -lCAENDigitizer ROOTLIBS = `root-config --cflags --glibs` OBJS = ClassDigitizer.o ALL = test test_indep EventBuilder ######################################################################### all : $(ALL) clean : /bin/rm -f $(OBJS) $(ALL) ClassDigitizer.o : ClassDigitizer.cpp ClassDigitizer.h RegisterAddress.h macro.h ClassData.h $(CC) $(COPTS) -c ClassDigitizer.cpp test : test.cpp ClassDigitizer.o @echo "--------- making test" $(CC) $(COPTS) -o test test.cpp ClassDigitizer.o $(CAENLIBS) $(ROOTLIBS) test_indep : test_indep.cpp RegisterAddress.h macro.h @echo "--------- making test_indep" $(CC) $(COPTS) -o test_indep test_indep.cpp $(CAENLIBS) EventBuilder : EventBuilder.cpp ClassData.h @echo "--------- making EventBuilder" $(CC) $(COPTS) -o EventBuilder EventBuilder.cpp $(CAENLIBS) $(ROOTLIBS)