kumquat-buildroot/package/omap-u-boot-utils/omap-u-boot-utils.mk
Arnout Vandecappelle (Essensium/Mind) 69e64c42b7 all packages: use new host-xxx-package macros
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
  xargs sed -i -e 's/$(eval $(call GENTARGETS,host))/$(eval $(host-generic-package))/' \
               -e 's/$(eval $(call AUTOTARGETS,host))/$(eval $(host-autotools-package))/' \
               -e 's/$(eval $(call CMAKETARGETS,host))/$(eval $(host-cmake-package))/'

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-07-17 20:18:03 +02:00

22 lines
561 B
Makefile

#############################################################
#
# omap-u-boot-utils
#
#############################################################
OMAP_U_BOOT_UTILS_VERSION = 8aff852322
OMAP_U_BOOT_UTILS_SITE = http://github.com/nmenon/omap-u-boot-utils.git
OMAP_U_BOOT_UTILS_SITE_METHOD = git
define HOST_OMAP_U_BOOT_UTILS_BUILD_CMDS
$(MAKE) -C $(@D)
endef
define HOST_OMAP_U_BOOT_UTILS_INSTALL_CMDS
for f in gpsign pserial tagger ucmd ukermit ; do \
install -m 755 -D $(@D)/$$f $(HOST_DIR)/usr/bin/$$f ; \
done
endef
$(eval $(host-generic-package))