mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
dcf31c6a1e
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
22 lines
639 B
Makefile
22 lines
639 B
Makefile
################################################################################
|
|
#
|
|
# edid-decode
|
|
#
|
|
################################################################################
|
|
|
|
EDID_DECODE_VERSION = f56f329ed23a25d002352dedba1e8f092a47286f
|
|
EDID_DECODE_SITE = git://linuxtv.org/edid-decode.git
|
|
EDID_DECODE_LICENSE = MIT
|
|
EDID_DECODE_LICENSE_FILES = edid-decode.c
|
|
|
|
define EDID_DECODE_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)"
|
|
endef
|
|
|
|
define EDID_DECODE_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|