xref: /spdk/test/unit/lib/util/Makefile (revision 1239ea1768bc3a16f64dcad734e8074102764f20)
1#  SPDX-License-Identifier: BSD-3-Clause
2#  Copyright (C) 2015 Intel Corporation.
3#  All rights reserved.
4#
5
6SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
7include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
8
9DIRS-y = base64.c bit_array.c cpuset.c crc16.c crc32_ieee.c crc32c.c crc64.c dif.c \
10	 file.c iov.c math.c net.c pipe.c string.c xor.c
11
12ifeq ($(OS), Linux)
13DIRS-y += fd_group.c
14endif
15
16.PHONY: all clean $(DIRS-y)
17
18all: $(DIRS-y)
19clean: $(DIRS-y)
20
21include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
22