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>
33 lines
714 B
Makefile
33 lines
714 B
Makefile
#############################################################
|
|
#
|
|
# fbset
|
|
#
|
|
#############################################################
|
|
|
|
FBSET_VERSION = 2.1
|
|
FBSET_SOURCE = fbset-$(FBSET_VERSION).tar.gz
|
|
FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
|
|
|
|
# Make sure full fbset wins over busybox fbset
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
FBSET_DEPENDENCIES += busybox
|
|
endif
|
|
|
|
define FBSET_BUILD_CMDS
|
|
$(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define FBSET_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/fbset $(TARGET_DIR)/usr/sbin/fbset
|
|
endef
|
|
|
|
define FBSET_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/fbset
|
|
endef
|
|
|
|
define FBSET_CLEAN_CMDS
|
|
-$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|