18684d51f4
Do not use CXX to set the "$(TARGET_CXX) $(TARGET_CXXFLAGS) $(TARGET_LDFLAGS)" variables and instead use TARGET_CONFIGURE_OPTS to pass variables using the "standard" variables. LDFLAGS is supported since https://git.linuxtv.org/edid-decode.git/commit/?id=0a454bcbba5e172c64236811ed98c161689372f1 CFLAGS is supported since https://git.linuxtv.org/edid-decode.git/commit/?id=b202b675e38578b33494fc45c2869917e66ba22d edid-decode did not switch CFLAGS to CXXFLAGS in https://git.linuxtv.org/edid-decode.git/commit/Makefile?id=e00579c128ced87a69df29a01caaaf0cd4a4c8cc so use CFLAGS to pass TARGET_CXXFLAGS Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
662 B
Makefile
23 lines
662 B
Makefile
################################################################################
|
|
#
|
|
# edid-decode
|
|
#
|
|
################################################################################
|
|
|
|
EDID_DECODE_VERSION = 188950472c19492547e298b27f9da0d72cf826df
|
|
EDID_DECODE_SITE = git://linuxtv.org/edid-decode.git
|
|
EDID_DECODE_LICENSE = MIT
|
|
EDID_DECODE_LICENSE_FILES = LICENSE
|
|
|
|
define EDID_DECODE_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
CFLAGS="$(TARGET_CXXFLAGS)"
|
|
endef
|
|
|
|
define EDID_DECODE_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|