COMPILER = g++ 
OBJECTS = vpexception.o vpsystemexception.o dbconnectionexception.o sqlexception.o invalidfieldexception.o norecordexception.o indexoutofrangeexception.o

exceptions : $(OBJECTS)

%.o: %.cpp
	$(COMPILER) -c -o $@ $<

clean:
	rm -f *.o
