CFLAGS = -O2 -Wall
UTILS = ipx_configure ipx_interface ipx_internal_net ipx_route

all: $(UTILS)

dep:
	$(CPP) -M $(INCLUDES) *.c > .depend

clean:
	rm -f $(UTILS) *.o rip sap ipxrcv ipxsend

mrproper: clean
	rm -f .depend

install: $(UTILS)
	for i in $(UTILS); \
	do \
		install $$i $(BINDIR); \
	done
