############################################ # LXT971 MDIO Tools ############################################ -include ../config.mk CROSSCC = arm-linux-gcc CFLAGS = -O -Wall CROSSSTRIP = arm-linux-strip bobjects = lxt971_mdio_tool all : $(bobjects) lxt971_mdio_tool : lxt971_mdio_tool.c set_group.h set_mdreg.h $(CROSSCC) $(CFLAGS) -o $@ $< $(CROSSSTRIP) $@ install: all cp $(bobjects) $(BINPATH) uninstall: clean ( cd $(BINPATH) ; rm -f $(bobjects) ) clean: rm -f $(bobjects) distclean: clean uninstall rm -f ./*~