CFLAGS=-Wall -O2 -m486 -s

all : ip_big_brother

ip_big_brother : ip_big_brother.c
	$(CC) $^ -o $@

clean :
	rm -f *.o *~

clobber : clean
	rm ip_big_brother
