TARGET = analyzer DICT = exDict CC = g++ LDFLAGS = $(shell root-config --libs) $(shell root-config --glibs) CFLAGS = $(shell root-config --cflags) all: dict build dict: rootcint -f $(DICT).cxx -c $(TARGET).h exLinkDef.h build: $(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $(TARGET).cxx $(DICT).cxx