# # GNUmakefile # Dariusz Antonczyk C++ = g++ DEBUG_OPTS = -O2 -g -Wall LIB_DIR = ../ ALL_INC = -I${LIB_DIR} $(shell root-config --cflags) all: readGoofieData readGoofieData: $(LIB_DIR)/Linux/libAliGoofieRawData.so readGoofieData.cpp $(C++) $(DEBUG_OPTS) $(ALL_INC) $^ -o $@ `root-config --libs` clean: rm -rf readGoofieData rm -f *~