
# the macro below includes the debug info at compile time
CPPFLAGS = -g2
# the macro below is the compiler we are using
CC = g++

run: main.o stopwatch.o
	$(CC) $(CPPFLAGS) -o run main.o stopwatch.o

%.o: %.cpp
	$(CC) $(CPPFLAGS) -c $<

clean:
	-rm *.o
