package/xxhash: optimize XXHASH_{TARGETS, INSTALL_TARGETS}
Optimize XXHASH_{TARGETS,INSTALL_TARGETS} as suggested by Thomas
Petazzoni in
https://patchwork.ozlabs.org/project/buildroot/patch/20221228221522.280696-1-fontaine.fabrice@gmail.com/
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 3de4ae0121
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
3ce37efe7f
commit
7f1b0cd321
@ -10,28 +10,20 @@ XXHASH_LICENSE = BSD-2-Clause (library), GPL-2.0+ (xxhsum)
|
||||
XXHASH_LICENSE_FILES = LICENSE cli/COPYING
|
||||
XXHASH_INSTALL_STAGING = YES
|
||||
|
||||
XXHASH_TARGETS = xxhsum
|
||||
XXHASH_INSTALL_TARGETS = install_xxhsum
|
||||
XXHASH_TARGETS = xxhsum libxxhash.pc
|
||||
XXHASH_INSTALL_TARGETS = \
|
||||
install_libxxhash.includes \
|
||||
install_libxxhash.pc \
|
||||
install_xxhsum
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
XXHASH_TARGETS += libxxhash.a libxxhash.pc
|
||||
XXHASH_INSTALL_TARGETS += \
|
||||
install_libxxhash.a \
|
||||
install_libxxhash.includes \
|
||||
install_libxxhash.pc
|
||||
else ifeq ($(BR2_SHARED_LIBS),y)
|
||||
XXHASH_TARGETS += libxxhash libxxhash.pc
|
||||
XXHASH_INSTALL_TARGETS += \
|
||||
install_libxxhash \
|
||||
install_libxxhash.includes \
|
||||
install_libxxhash.pc
|
||||
else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
||||
XXHASH_TARGETS += libxxhash.a libxxhash libxxhash.pc
|
||||
XXHASH_INSTALL_TARGETS += \
|
||||
install_libxxhash.a \
|
||||
install_libxxhash \
|
||||
install_libxxhash.includes \
|
||||
install_libxxhash.pc
|
||||
ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
|
||||
XXHASH_TARGETS += libxxhash.a
|
||||
XXHASH_INSTALL_TARGETS += install_libxxhash.a
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
|
||||
XXHASH_TARGETS += libxxhash
|
||||
XXHASH_INSTALL_TARGETS += install_libxxhash
|
||||
endif
|
||||
|
||||
define XXHASH_BUILD_CMDS
|
||||
|
Loading…
Reference in New Issue
Block a user