CC=gcc
CFLAGS=-I. -g
OBJS=test.o inettrans.o
LIBS=

addrtest: $(OBJS)
	$(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)

clean:
	/bin/rm -f addrtest *.o *~
