TOPDIR = ../..
include $(TOPDIR)/Makeinit
# CFLAGS = -O2 -Wall -I../include
UTILS = ipxrcv ipxsend rip sap
CFLAGS := $(CCFLAGS)

all: $(UTILS)

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

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

mrproper: clean
	rm -f .depend
