2022-06-03 19:15:11 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
# Copyright (C) 2015 Intel Corporation.
|
2016-09-15 00:12:15 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2019-08-19 19:44:17 +00:00
|
|
|
DIRS-y = base64.c bit_array.c cpuset.c crc16.c crc32_ieee.c crc32c.c dif.c \
|
2022-03-28 12:17:55 +00:00
|
|
|
iov.c math.c pipe.c string.c xor.c
|
2016-09-15 00:12:15 +00:00
|
|
|
|
2017-05-16 23:51:12 +00:00
|
|
|
.PHONY: all clean $(DIRS-y)
|
2016-09-15 00:12:15 +00:00
|
|
|
|
2017-05-16 23:51:12 +00:00
|
|
|
all: $(DIRS-y)
|
|
|
|
clean: $(DIRS-y)
|
2016-09-15 00:12:15 +00:00
|
|
|
|
2017-05-16 23:51:12 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|