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>
27 lines
830 B
Makefile
27 lines
830 B
Makefile
################################################################################
|
|
#
|
|
# cc-tool
|
|
#
|
|
################################################################################
|
|
|
|
CC_TOOL_VERSION = 0.26
|
|
CC_TOOL_SITE = http://downloads.sourceforge.net/project/cctool
|
|
CC_TOOL_SOURCE = cc-tool-$(CC_TOOL_VERSION)-src.tgz
|
|
CC_TOOL_LICENSE = GPL-2.0
|
|
CC_TOOL_LICENSE_FILES = COPYING
|
|
CC_TOOL_DEPENDENCIES = boost libusb
|
|
|
|
# we're patching boost.m4
|
|
CC_TOOL_AUTORECONF = YES
|
|
|
|
# Configure script "discovers" boost in /usr/local if not given explicitly
|
|
CC_TOOL_CONF_OPTS = --with-boost=$(STAGING_DIR)/usr
|
|
|
|
# Help boost.m4 find the Boost Regex library, which needs the pthread
|
|
# library, but isn't detected using a modern (pkg-config) mechanism.
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
CC_TOOL_CONF_ENV += LIBS="-lpthread"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|