# makefile for check2.cc ROOTCFLAGS = $(shell root-config --cflags) ROOTLIBS = $(shell root-config --libs) ROOTGLIBS = $(shell root-config --glibs) all: scaner scaner: scaner.cc scaner.h rootcint -f ex2aDict.cc -c scaner.h ex2aLinkDef.h gcc -pg -g -o scaner scaner.cc ex2aDict.cc -pthread -m64 -I${ROOTSYS}/include -L${ROOTSYS}/lib -lCore -lCint -lRIO -lNet -lHist -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lThread -lGui -pthread -lm -ldl -rdynamic clean: rm -f scaner.o scaner