CC=g++
CFLAGS= -Wall -Werror

all: hw3

hw3: main.cpp
	$(CC) $(CFLAGS) -o hw3 main.cpp