########################################################################### # ping single scsn device ########################################################################### -include ../config.mk CROSSCC = arm-linux-gcc CROSSSTRIP=arm-linux-strip CFLAGS = -O -Wall -I./ bobjects = scsnping all : $(bobjects) scsnping : scsnping.c scsb.h $(CROSSCC) $(CFLAGS) -o $@ $< $(CROSSSTRIP) $@ clean: rm -f $(bobjects) distclean: clean rm -f ./*~