CC = $(CROSS)gcc
tool = eth_speed

all: $(tool)
	@cp -f $(tool) /tftpboot
	@cp -f $(tool) /nfs

install:
	install -s --strip-program=$(STRIP) $(tool) $(EXEC_BINDIR)
	
clean:
	@rm -f $(tool)

