mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Extending {C,LD}FLAGS for both host and target cdrkit package is not needed
because it is already handled by the {host-,}cmake-package infrastructure.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
510 B
Makefile
21 lines
510 B
Makefile
################################################################################
|
|
#
|
|
# cdrkit
|
|
#
|
|
################################################################################
|
|
|
|
CDRKIT_VERSION = 1.1.11
|
|
CDRKIT_SITE = http://www.cdrkit.org/releases
|
|
CDRKIT_DEPENDENCIES = libcap bzip2 zlib
|
|
CDRKIT_LICENSE = GPLv2
|
|
CDRKIT_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
CDRKIT_CONF_OPT += -DBITFIELDS_HTOL=1
|
|
else
|
|
CDRKIT_CONF_OPT += -DBITFIELDS_HTOL=0
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|