e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
481 B
Makefile
20 lines
481 B
Makefile
############################################
|
|
#
|
|
# read-edid
|
|
#
|
|
############################################
|
|
|
|
READ_EDID_VERSION = 1.4.2
|
|
READ_EDID_SITE = http://www.polypux.org/projects/read-edid/
|
|
|
|
define READ_EDID_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define READ_EDID_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/get-edid $(TARGET_DIR)/sbin/get-edid
|
|
$(INSTALL) -D -m 0755 $(@D)/parse-edid $(TARGET_DIR)/sbin/parse-edid
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|