CXXFLAGS = -Wall -g3
pork-barrel: pork-barrel.o
	$(CXX) $+ -o $@

pork-barrel.o: pork-barrel.cc

clean:
	rm -f pork-barrel pork-barrel.o *~

