mk: fix build clean
The variables AESNI_MULTI_BUFFER_LIB_PATH and LIBSSO_PATH are not required for "make clean". It is the same fix as in the commite277b2397
. Fixes:eec136f3c5
("aesni_gcm: add driver for AES-GCM crypto operations") Fixes:3aafc423cf
("snow3g: add driver for SNOW 3G library") Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
8688b18a99
commit
1eec9aa301
@ -30,9 +30,11 @@
|
||||
|
||||
include $(RTE_SDK)/mk/rte.vars.mk
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifeq ($(AESNI_MULTI_BUFFER_LIB_PATH),)
|
||||
$(error "Please define AESNI_MULTI_BUFFER_LIB_PATH environment variable")
|
||||
endif
|
||||
endif
|
||||
|
||||
# library name
|
||||
LIB = librte_pmd_aesni_gcm.a
|
||||
|
@ -30,9 +30,11 @@
|
||||
|
||||
include $(RTE_SDK)/mk/rte.vars.mk
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifeq ($(LIBSSO_PATH),)
|
||||
$(error "Please define LIBSSO_PATH environment variable")
|
||||
endif
|
||||
endif
|
||||
|
||||
# library name
|
||||
LIB = librte_pmd_snow3g.a
|
||||
|
Loading…
Reference in New Issue
Block a user