# Dataexportctl
DATAEXPORTCTL_VERSION ?= 0.1
DATAEXPORTCTL_NAME    := dataexportctl-$(DATAEXPORTCTL_VERSION)
DATAEXPORTCTL_PATH    := ../../../apps/axi_dataexport_ctl
DATAEXPORTCTL_BUILD_OPTS ?= CC=$(TOOLCHAIN_CC) AR=$(TOOLCHAIN_CROSS)ar 
#LDFLAGS=-static

download-dataexportctl: 
unpack-dataexportctl: 

configure-dataexportctl:
build-dataexportctl:
	$(Q) $(call common-build,DATAEXPORTCTL) dataexportctl
	$(Q) $(TOOLCHAIN_ENV) $(TOOLCHAIN_CROSS)strip $(DATAEXPORTCTL_PATH)/dataexportctl

install-dataexportctl:
	$(Q) cp -v $(DATAEXPORTCTL_PATH)/dataexportctl $(GENRAMFS_PATH)/usr/bin

clean-dataexportctl:
	$(Q) $(call common-clean,DATAEXPORTCTL)

distclean-dataexportctl: clean-dataexportctl

download-body: download-dataexportctl
download-fini: unpack-dataexportctl
configure-body: configure-dataexportctl
build-body: build-dataexportctl
install-body: install-dataexportctl
clean-body: clean-dataexportctl
distclean-body: distclean-dataexportctl