[Thomas: - rename to open-plc-utils to match upstream name. - fix Config.in to use tabs instead of spaces - remove 'default n' line - add dependency on BR2_USE_MMU - bump to a more recent upstream commit - remove no longer needed openplc-0002-Remove-vfprintf-call.patch - rename patch to the proper naming convention - specify <pkg>_LICENSE_FILES - pass CROSS= instead of CC= - do not pass CC= at install time.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
774 B
Makefile
23 lines
774 B
Makefile
################################################################################
|
|
#
|
|
# open-plc-utils
|
|
#
|
|
################################################################################
|
|
|
|
OPEN_PLC_UTILS_VERSION = 1f6e7e372b313cf570aa63314037588ed01ec0de
|
|
OPEN_PLC_UTILS_SITE = $(call github,qca,open-plc-utils,$(OPEN_PLC_UTILS_VERSION))
|
|
OPEN_PLC_UTILS_LICENSE = BSD-3c
|
|
OPEN_PLC_UTILS_LICENSE_FILES = LICENSE
|
|
|
|
# We unfortunately can't use TARGET_CONFIGURE_OPTS, as it would
|
|
# override the package CFLAGS, LDFLAGS and CXXFLAGS definitions.
|
|
define OPEN_PLC_UTILS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CROSS=$(TARGET_CROSS) -C $(@D)
|
|
endef
|
|
|
|
define OPEN_PLC_UTILS_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) ROOTFS=$(TARGET_DIR) -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|