COMPILADOR=g++
OPCOES=-ansi --no-exceptions --no-rtti -Wall -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations

ip.o: ip.cc
	$(COMPILADOR) $(OPCOES) -c ip.cc

test:
	$(COMPILADOR) $(OPCOES) -o ip_test ip_test.cc ip.o	

classes: 
	make ip.o

clean:
	rm -rf *.o *.core core ip_test

all: ip.o test
