# Makefile for cidr
# 5/9/2000

OBJS = cidr.o

cidr: $(OBJS)
	gcc -Wall -o cidr cidr.c

clean:
	rm $(OBJS) cidr
