73240a5b68
Upstream removed the udev dependent code in commit 4cbe5888f4bc (nvme-cli: fabrics: remove libudev dependency). Cc: Mamatha Inamdar <mamatha4@linux.vnet.ibm.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
22 lines
556 B
Makefile
22 lines
556 B
Makefile
################################################################################
|
|
#
|
|
# nvme
|
|
#
|
|
################################################################################
|
|
|
|
NVME_VERSION = v1.3
|
|
NVME_SITE = $(call github,linux-nvme,nvme-cli,$(NVME_VERSION))
|
|
NVME_LICENSE = GPL-2.0+
|
|
NVME_LICENSE_FILES = LICENSE
|
|
|
|
define NVME_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define NVME_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) \
|
|
PREFIX=/usr install-bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|