dsp-tools.mk 537 B

123456789101112131415161718
  1. DSP_TOOLS_VERSION = 2.0
  2. DSP_TOOLS_SOURCE = dsp-tools-$(DSP_TOOLS_VERSION).tar.gz
  3. DSP_TOOLS_SITE = http://gst-dsp.googlecode.com/files/
  4. DSP_TOOLS_DEPENDENCIES = tidsp-binaries
  5. define DSP_TOOLS_BUILD_CMDS
  6. $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e
  7. endef
  8. define DSP_TOOLS_INSTALL_TARGET_CMDS
  9. $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e DESTDIR=$(TARGET_DIR) install
  10. endef
  11. define DSP_TOOLS_UNINSTALL_TARGET_CMDS
  12. rm -f $(addprefix $(TARGET_DIR)/usr/bin/dsp-, load probe test exec)
  13. endef
  14. $(eval $(call GENTARGETS,package,dsp-tools))