CXX := clang++
CXXFLAGS := -g -Wall

all: profiler

clean:
	rm -rf profiler

profiler: profiler.cc inspect.h
	$(CXX) $(CXXFLAGS) -o $@ profiler.cc

