CC = g++ CFLAGS = -m64 -DDEBUG -ggdb -Wall all : logging logging : logging.cc $(CC) $(CFLAGS) logging.cc -o logging \ -I${MAUS_ROOT_DIR}/ \ -I${MAUS_ROOT_DIR}/src/common_cpp \ -I${MAUS_ROOT_DIR}/src/legacy \ -I${MAUS_THIRD_PARTY}/third_party/install/include \ -I${ROOTSYS}/include \ -L${MAUS_ROOT_DIR}/build/ \ `root-config --ldflags` \ `${ROOTSYS}/bin/root-config --glibs` \ -lMausCpp \ -Wl,--no-as-needed clean: rm logging