timer: allow management in shared memory
[dpdk.git] / lib / librte_timer / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2014 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_timer.a
8
9 CFLAGS += -DALLOW_EXPERIMENTAL_API
10 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
11 LDLIBS += -lrte_eal
12
13 EXPORT_MAP := rte_timer_version.map
14
15 LIBABIVER := 1
16
17 # all source are stored in SRCS-y
18 SRCS-$(CONFIG_RTE_LIBRTE_TIMER) := rte_timer.c
19
20 # install this header file
21 SYMLINK-$(CONFIG_RTE_LIBRTE_TIMER)-include := rte_timer.h
22
23 include $(RTE_SDK)/mk/rte.lib.mk