CXX = g++
ROOTCFLAGS = $(shell root-config --cflags)
ROOTLIBS   = $(shell root-config --libs)

hello: hello.cxx
	$(CXX) -o hello hello.cxx $(ROOTCFLAGS) $(ROOTLIBS)

clean:
	rm -f hello

