34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
|
################################################################################
|
||
|
#
|
||
|
# mmc-utils
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
MMC_UTILS_VERSION = dfc3b6ecda84d21418fb4408b39c5c71db4c6458
|
||
|
MMC_UTILS_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git
|
||
|
MMC_UTILS_SITE_METHOD = git
|
||
|
MMC_UTILS_LICENSE = GPL-2.0
|
||
|
MMC_UTILS_LICENSE_FILES = mmc.h
|
||
|
|
||
|
MMC_UTILS_CFLAGS = $(TARGET_CFLAGS)
|
||
|
|
||
|
ifeq ($(BR2_PACKAGE_MMC_UTILS_ENABLE_DANGEROUS_COMMANDS),y)
|
||
|
MMC_UTILS_CFLAGS += -DDANGEROUS_COMMANDS_ENABLED
|
||
|
endif
|
||
|
|
||
|
# override AM_CFLAGS as the project Makefile uses it to pass
|
||
|
# -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2, and the latter conflicts
|
||
|
# with the _FORTIFY_SOURCE that we pass when hardening options are
|
||
|
# enabled.
|
||
|
define MMC_UTILS_BUILD_CMDS
|
||
|
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
||
|
CFLAGS="$(MMC_UTILS_CFLAGS)" \
|
||
|
AM_CFLAGS=
|
||
|
endef
|
||
|
|
||
|
define MMC_UTILS_INSTALL_TARGET_CMDS
|
||
|
$(MAKE) -C $(@D) prefix=/usr DESTDIR=$(TARGET_DIR) install
|
||
|
endef
|
||
|
|
||
|
$(eval $(generic-package))
|