# makefile for tools (arp)

TOOLS=addlib.o remlib.o libs.o

all:	$(TOOLS)
	ln addlib.o -lc
	ln remlib.o -lc
	ln libs.o -lc

clean:	$(TOOLS)
	ln addlib.o -lc
	ln remlib.o -lc
	ln libs.o -lc
	@del #?.o
