2014-10-05 22:02:42 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# open-plc-utils
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-01-23 16:44:50 +01:00
|
|
|
OPEN_PLC_UTILS_VERSION = 05ef40c0a2949cfaf1c3230e10679fbcf912d174
|
2014-10-05 22:02:42 +02:00
|
|
|
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.
|
2015-04-05 11:30:54 +02:00
|
|
|
#
|
|
|
|
# Yes, we're passing __UCLIBC__ in EXTRA_CFLAGS, as it fixes a build
|
|
|
|
# issue for non-uClibc toolchains. It is the very crappy solution
|
|
|
|
# suggested at https://github.com/qca/open-plc-utils/issues/36.
|
2014-10-05 22:02:42 +02:00
|
|
|
define OPEN_PLC_UTILS_BUILD_CMDS
|
2015-04-05 11:30:54 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) CROSS=$(TARGET_CROSS) EXTRA_CFLAGS="-D__UCLIBC__" -C $(@D)
|
2014-10-05 22:02:42 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define OPEN_PLC_UTILS_INSTALL_TARGET_CMDS
|
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) ROOTFS=$(TARGET_DIR) -C $(@D) install
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|