# This is a comment line
CC=g++


all: run

run: run.c tools/analyzer.cpp tools/analyzer.h
	$(CC) run.c tools/analyzer.cpp -v -I. -o  run
