e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
#############################################################
|
|
#
|
|
# dosfstools
|
|
#
|
|
#############################################################
|
|
|
|
DOSFSTOOLS_VERSION = 3.0.12
|
|
DOSFSTOOLS_SITE = http://www.daniel-baumann.ch/software/dosfstools
|
|
MKDOSFS_BINARY = mkdosfs
|
|
DOSFSCK_BINARY = dosfsck
|
|
DOSFSLABEL_BINARY = dosfslabel
|
|
|
|
define DOSFSTOOLS_BUILD_CMDS
|
|
$(MAKE) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
CC="$(TARGET_CC)" -C $(@D)
|
|
endef
|
|
|
|
DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_MKDOSFS)+=$(MKDOSFS_BINARY)
|
|
DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_DOSFSCK)+=$(DOSFSCK_BINARY)
|
|
DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL)+=$(DOSFSLABEL_BINARY)
|
|
|
|
define DOSFSTOOLS_INSTALL_TARGET_CMDS
|
|
test -z "$(DOSFSTOOLS_INSTALL_BIN_FILES_y)" || \
|
|
install -m 755 $(addprefix $(@D)/,$(DOSFSTOOLS_INSTALL_BIN_FILES_y)) $(TARGET_DIR)/sbin/
|
|
endef
|
|
|
|
define DOSFSTOOLS_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/sbin/$(MKDOSFS_BINARY)
|
|
rm -f $(TARGET_DIR)/sbin/$(DOSFSCK_BINARY)
|
|
rm -f $(TARGET_DIR)/sbin/$(DOSFSLABEL_BINARY)
|
|
endef
|
|
|
|
define DOSFSTOOLS_CLEAN_CMDS
|
|
-$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|