# makefile for check2.cc ROOTCFLAGS = $(shell root-config --cflags) ROOTLIBS = $(shell root-config --libs) ROOTGLIBS = $(shell root-config --glibs) all: pandf pandf.o: pandf.cc gcc -pg -c -g pandf.cc -pthread -m64 -I${ROOTSYS}/include pandf: pandf.o gcc -pg -o pandf pandf.o -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 pandf.o pandf