.PHONY: all

all: helloexceptions

helloexceptions: helloexceptions.cpp
	g++ -g -o helloexceptions helloexceptions.cpp

.PHONY: clean
clean:
	rm -f helloexceptions helloexceptions.o

