mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
798 B
Makefile
24 lines
798 B
Makefile
################################################################################
|
|
#
|
|
# fb-test-app
|
|
#
|
|
################################################################################
|
|
|
|
FB_TEST_APP_VERSION = rosetta-1.1.0
|
|
FB_TEST_APP_SITE = $(call github,prpplague,fb-test-app,$(FB_TEST_APP_VERSION))
|
|
FB_TEST_APP_LICENSE = GPL-2.0
|
|
FB_TEST_APP_LICENSE_FILES = COPYING
|
|
|
|
define FB_TEST_APP_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
|
|
endef
|
|
|
|
define FB_TEST_APP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/perf $(TARGET_DIR)/usr/bin/fb-test-perf
|
|
$(INSTALL) -D -m 0755 $(@D)/rect $(TARGET_DIR)/usr/bin/fb-test-rect
|
|
$(INSTALL) -D -m 0755 $(@D)/fb-test $(TARGET_DIR)/usr/bin/fb-test
|
|
$(INSTALL) -D -m 0755 $(@D)/offset $(TARGET_DIR)/usr/bin/fb-test-offset
|
|
endef
|
|
|
|
$(eval $(generic-package))
|