2010-08-26 22:22:58 +04:00
|
|
|
include $(top_srcdir)/config/Rules.am
|
|
|
|
|
2014-06-10 01:55:31 +04:00
|
|
|
VPATH = $(top_srcdir)/module/avl/
|
|
|
|
|
2018-01-10 21:49:27 +03:00
|
|
|
# Includes kernel code, generate warnings for large stack frames
|
|
|
|
AM_CFLAGS += $(FRAME_LARGER_THAN)
|
2010-08-26 22:22:58 +04:00
|
|
|
|
|
|
|
DEFAULT_INCLUDES += \
|
2010-09-05 00:26:23 +04:00
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_srcdir)/lib/libspl/include
|
2010-08-26 22:22:58 +04:00
|
|
|
|
2012-01-01 03:30:52 +04:00
|
|
|
noinst_LTLIBRARIES = libavl.la
|
2010-08-26 22:22:58 +04:00
|
|
|
|
2014-06-10 01:55:31 +04:00
|
|
|
USER_C =
|
|
|
|
|
|
|
|
KERNEL_C = \
|
|
|
|
avl.c
|
|
|
|
|
|
|
|
nodist_libavl_la_SOURCES = \
|
|
|
|
$(USER_C) \
|
|
|
|
$(KERNEL_C)
|
|
|
|
|
|
|
|
EXTRA_DIST = $(USER_C)
|