
BIN=../bin
SRC=../src

box_ver=busybox-1.18.4
src_path=$(SRC)/$(box_ver)/
target=busybox

all:
	make -C $(src_path) plat=$(plat) product=$(product)  mode=$(mode)
	@cp -f $(src_path)/$(target) $(BIN)/
	date

clean:
	make -C $(src_path) clean
	@rm -f $(BIN)/$(target)
